Update of /cvsroot/cppunit/cppunit2/src/cpputtest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30794/src/cpputtest
Modified Files:
cpputtest.vcproj main.cpp SConscript
Log Message:
* added tests for ExceptionGuard.
* fixed bug in ExceptionGuard::append()
Index: SConscript
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/SConscript,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** SConscript 27 Feb 2005 16:12:08 -0000 1.6
--- SConscript 27 Feb 2005 17:42:32 -0000 1.7
***************
*** 10,14 ****
main.cpp
registrytest.cpp
! testbasicassertion.cpp
testfunctor.cpp
testfixturetest.cpp
--- 10,15 ----
main.cpp
registrytest.cpp
! testbasicassertion.cpp
! testexceptionguard.cpp
testfunctor.cpp
testfixturetest.cpp
Index: main.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/main.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** main.cpp 27 Feb 2005 16:30:28 -0000 1.15
--- main.cpp 27 Feb 2005 17:42:32 -0000 1.16
***************
*** 14,18 ****
bool testBasicAssertions();
! //bool testTestContext();
//bool testTestRunResult();
bool testTestSuite();
--- 14,18 ----
bool testBasicAssertions();
! bool testExceptionGuard();
//bool testTestRunResult();
bool testTestSuite();
***************
*** 25,29 ****
return testBasicAssertions() &&
testFunctors() &&
! // testTestRunResult() &&
// testTestContext() &&
testTestSuite() &&
--- 25,29 ----
return testBasicAssertions() &&
testFunctors() &&
! testExceptionGuard() &&
// testTestContext() &&
testTestSuite() &&
Index: cpputtest.vcproj
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/cpputtest.vcproj,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** cpputtest.vcproj 27 Feb 2005 16:12:07 -0000 1.15
--- cpputtest.vcproj 27 Feb 2005 17:42:32 -0000 1.16
***************
*** 219,222 ****
--- 219,225 ----
</File>
<File
+ RelativePath=".\testexceptionguard.cpp">
+ </File>
+ <File
RelativePath="testfixturetest.cpp">
<FileConfiguration
***************
*** 241,259 ****
</File>
<File
- RelativePath=".\testtestcontext.cpp">
- <FileConfiguration
- Name="Release|Win32"
- ExcludedFromBuild="TRUE">
- <Tool
- Name="VCCLCompilerTool"/>
- </FileConfiguration>
- <FileConfiguration
- Name="Debug|Win32"
- ExcludedFromBuild="TRUE">
- <Tool
- Name="VCCLCompilerTool"/>
- </FileConfiguration>
- </File>
- <File
RelativePath=".\testtestrunresult.cpp">
<FileConfiguration
--- 244,247 ----
|