diff options
author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-04-05 21:08:55 +0000 |
---|---|---|
committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-04-05 21:08:55 +0000 |
commit | 0e44bc8d5fa467b9d1c835b2e40b17f538e4bbe3 (patch) | |
tree | 5797d055c0bb53377d6b5317789efd71cffc1ecc /examples/cppunittest/CppUnitTestMain.cpp | |
parent | 24000339facc182150fc564a4d85f99d89dd3e13 (diff) | |
download | cppunit-0e44bc8d5fa467b9d1c835b2e40b17f538e4bbe3.tar.gz |
examples/cppunittest/CppUnitTestMain.cpp: never wait for a key press.
Diffstat (limited to 'examples/cppunittest/CppUnitTestMain.cpp')
-rw-r--r-- | examples/cppunittest/CppUnitTestMain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cppunittest/CppUnitTestMain.cpp b/examples/cppunittest/CppUnitTestMain.cpp index db44c6a..d095576 100644 --- a/examples/cppunittest/CppUnitTestMain.cpp +++ b/examples/cppunittest/CppUnitTestMain.cpp @@ -23,8 +23,8 @@ main( int argc, char* argv[] ) std::cerr ) ); } - // Run the test and don't wait a key if post build check. - bool wasSucessful = runner.run( "", !selfTest ); + // Run the test. + bool wasSucessful = runner.run( "" ); // Return error code 1 if the one of test failed. return wasSucessful ? 0 : 1; |