Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/unittests/memoryallocatorunittest.cpp

    r920c70 ra67d19  
    1212#include "memoryallocator.hpp"
    1313#include "memoryallocatorunittest.hpp"
    14 #include "memoryusageobserver.hpp"
    1514#include "helpers.hpp"
    16 #include "log.hpp"
    1715#include "defs.hpp"
    18 
    19 #ifdef HAVE_TESTRUNNER
    20 #include "UnitTestMain.hpp"
    21 #endif /*HAVE_TESTRUNNER*/
    2216
    2317/********************************************** Test classes **************************************/
     
    3529{
    3630  MemoryUsageObserver::getInstance()->purgeInstance();
    37   logger::purgeInstance();
    3831};
    3932
     
    109102  Free(buffer2);
    110103};
     104
     105
     106/********************************************** Main routine **************************************/
     107
     108int main(int argc, char **argv)
     109{
     110  // Get the top level suite from the registry
     111  CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
     112
     113  // Adds the test to the list of test to run
     114  CppUnit::TextUi::TestRunner runner;
     115  runner.addTest( suite );
     116
     117  // Change the default outputter to a compiler error format outputter
     118  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.