- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/unittests/memoryallocatorunittest.cpp ¶
re138de re6fdbe 13 13 #include "memoryallocatorunittest.hpp" 14 14 #include "helpers.hpp" 15 #include "log.hpp" 15 16 #include "defs.hpp" 17 18 #ifdef HAVE_TESTRUNNER 19 #include "UnitTestMain.hpp" 20 #endif /*HAVE_TESTRUNNER*/ 16 21 17 22 /********************************************** Test classes **************************************/ … … 29 34 { 30 35 MemoryUsageObserver::getInstance()->purgeInstance(); 36 logger::purgeInstance(); 31 37 }; 32 38 … … 102 108 Free(buffer2); 103 109 }; 104 105 106 /********************************************** Main routine **************************************/107 108 int main(int argc, char **argv)109 {110 // Get the top level suite from the registry111 CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();112 113 // Adds the test to the list of test to run114 CppUnit::TextUi::TestRunner runner;115 runner.addTest( suite );116 117 // Change the default outputter to a compiler error format outputter118 runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),119 std::cerr ) );120 // Run the tests.121 bool wasSucessful = runner.run();122 123 // Return error code 1 if the one of test failed.124 return wasSucessful ? 0 : 1;125 };
Note:
See TracChangeset
for help on using the changeset viewer.