1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#include <wibble/tests/tut-wibble.h>
#include <signal.h>
#include <cstdlib>
#include <cstring>
namespace tut
{
test_runner_singleton runner;
}
using namespace wibble;
void signal_to_exception(int)
{
throw std::runtime_error("killing signal catched");
}
int main(int argc,const char* argv[])
{
tut::reporter visi;
signal(SIGSEGV,signal_to_exception);
signal(SIGILL,signal_to_exception);
if( (argc == 2 && (! strcmp ("help", argv[1]))) || argc > 3 )
{
std::cout << "TUT example test application." << std::endl;
std::cout << "Usage: example [regression] | [list] | [ group] [test]" << std::endl;
std::cout << " List all groups: example list" << std::endl;
std::cout << " Run all tests: example regression" << std::endl;
std::cout << " Run one group: example std::auto_ptr" << std::endl;
std::cout << " Run one test: example std::auto_ptr 3" << std::endl;;
}
// std::cout << "\nFAILURE and EXCEPTION in these tests are FAKE ;)\n\n";
tut::runner.get().set_callback(&visi);
try
{
if( argc == 1 || (argc == 2 && std::string(argv[1]) == "regression") )
{
tut::runner.get().run_tests();
}
else if( argc == 2 && std::string(argv[1]) == "list" )
{
std::cout << "registered test groups:" << std::endl;
tut::groupnames gl = tut::runner.get().list_groups();
tut::groupnames::const_iterator i = gl.begin();
tut::groupnames::const_iterator e = gl.end();
while( i != e )
{
std::cout << " " << *i << std::endl;
++i;
}
}
else if( argc == 2 && std::string(argv[1]) != "regression" )
{
tut::runner.get().run_tests(argv[1]);
}
else if( argc == 3 )
{
tut::runner.get().run_test(argv[1],::atoi(argv[2]));
}
}
catch( const std::exception& ex )
{
std::cerr << "tut raised exception: " << ex.what() << std::endl;
}
return 0;
}
|