Update of /cvsroot/cppunit/cppunit2/src/cpputtest
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20596/src/cpputtest
Modified Files:
SConscript main.cpp
Log Message:
* added CppTL:SmallMap, a std::map like container that use a sorted vector to hold item.
Index: main.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/main.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** main.cpp 11 Nov 2005 20:54:15 -0000 1.26
--- main.cpp 5 Jun 2006 12:02:56 -0000 1.27
***************
*** 8,11 ****
--- 8,12 ----
#include "registrytest.h"
#include "testfixturetest.h"
+ #include "smallmaptest.h"
//#include "formattest.h"
***************
*** 110,113 ****
--- 111,115 ----
allSuite->add( AssertEnumTest::suite() );
allSuite->add( ReflectionTest::suite() );
+ allSuite->add( SmallMapTest::suite() );
// allSuite->add( FormatTest::suite() );
// allSuite->add( CommandLineOptionsTest::suite() );
Index: SConscript
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/SConscript,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** SConscript 11 Nov 2005 20:54:15 -0000 1.15
--- SConscript 5 Jun 2006 12:02:56 -0000 1.16
***************
*** 7,10 ****
--- 7,11 ----
main.cpp
registrytest.cpp
+ smallmaptest.cpp
testbasicassertion.cpp
testexceptionguard.cpp
|