1 |
|
2 |
/* $Id$ */ |
3 |
|
4 |
/******************************************************* |
5 |
* |
6 |
* Copyright 2003-2007 by ACceSS MNRF |
7 |
* Copyright 2007 by University of Queensland |
8 |
* |
9 |
* http://esscc.uq.edu.au |
10 |
* Primary Business: Queensland, Australia |
11 |
* Licensed under the Open Software License version 3.0 |
12 |
* http://www.opensource.org/licenses/osl-3.0.php |
13 |
* |
14 |
*******************************************************/ |
15 |
|
16 |
#include "EsysExceptionTestCase.h" |
17 |
#include "tools/CppUnitTest/TestRunner.h" |
18 |
|
19 |
using namespace CppUnitTest; |
20 |
|
21 |
extern "C"{ |
22 |
#include "paso/Paso_MPI.h" |
23 |
} |
24 |
|
25 |
int main(int argc, char **argv) { |
26 |
|
27 |
#ifdef PASO_MPI |
28 |
int status = MPI_Init(&argc, &argv); |
29 |
if (status != MPI_SUCCESS) { |
30 |
std::cerr << argv[0] << ": MPI_Init failed, exiting." << std::endl; |
31 |
return status; |
32 |
} |
33 |
#endif |
34 |
|
35 |
// |
36 |
// object which runs all of the tests |
37 |
TestRunner runner; |
38 |
// |
39 |
// add the RangeTestCase suite of tests to the runner |
40 |
runner.addTest ("EsysException", EsysExceptionTestCase::suite()); |
41 |
|
42 |
// actually run the unit tests. |
43 |
runner.run (argc, argv); |
44 |
|
45 |
#ifdef PASO_MPI |
46 |
MPI_Finalize(); |
47 |
#endif |
48 |
|
49 |
return 0; |
50 |
} |