[Cppunit-cvs] cppunit2/src/cpputtest SConscript,1.10,1.11
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-03-05 11:02:36
|
Update of /cvsroot/cppunit/cppunit2/src/cpputtest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19560/src/cpputtest Modified Files: SConscript Log Message: * changed from using string split() method to scons Split() helper function for portability with python 1.5.2. Index: SConscript =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/SConscript,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** SConscript 4 Mar 2005 08:23:39 -0000 1.10 --- SConscript 5 Mar 2005 11:02:25 -0000 1.11 *************** *** 1,5 **** Import( 'env_testing buildLibraryUnitTest' ) ! buildLibraryUnitTest( env_testing, """ assertenumtest.cpp assertstringtest.cpp --- 1,5 ---- Import( 'env_testing buildLibraryUnitTest' ) ! buildLibraryUnitTest( env_testing, Split( """ assertenumtest.cpp assertstringtest.cpp *************** *** 14,17 **** testtestsuite.cpp reflectiontest.cpp ! """.split(), 'cpputtest' ) --- 14,17 ---- testtestsuite.cpp reflectiontest.cpp ! """ ), 'cpputtest' ) |