From 0e44bc8d5fa467b9d1c835b2e40b17f538e4bbe3 Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Fri, 5 Apr 2002 21:08:55 +0000 Subject: examples/cppunittest/CppUnitTestMain.cpp: never wait for a key press. --- examples/cppunittest/CppUnitTestMain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/cppunittest/CppUnitTestMain.cpp') 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; -- cgit v1.2.1