summaryrefslogtreecommitdiff
path: root/examples/cppunittest/CppUnitTestMain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cppunittest/CppUnitTestMain.cpp')
-rw-r--r--examples/cppunittest/CppUnitTestMain.cpp4
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;