root/library/tests/stresssuite/stresssuite.cpp

Revision 1064, 0.9 kB (checked in by mido, 14 years ago)

astyle applied all over the library

Line 
1#include "Test.h"
2#include "TestReporterStdout.h"
3#include "UnitTest++.h"
4#include "bdmerror.h"
5#include "itpp_ext.h"
6#include <string.h>
7#include "../general_suite.h"
8
9using namespace UnitTest;
10
11int main ( int argc, char const *argv[] ) {
12    if ( argc > 1 ) {
13        if ( !strcmp ( argv[1], "print" ) )
14            print_test_list();
15        else
16            pick_selected_tests ( argc, argv );
17    } else {
18        cout << endl << "STRESSSUITE - a program covering all BDM stress tests." << endl << endl
19             << argv[0] << " ....................................... run all stress tests" << endl
20             << argv[0] << " particular_test_1 particular_test_2 ... run selected stress tests" << endl
21             << argv[0] << " print ................................. print all the implemented stress tests" << endl;
22    }
23
24    return run_selected_tests();
25}
Note: See TracBrowser for help on using the browser.