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 "MeshAdapterTestCase.h" |
17 |
|
18 |
#include "tools/CppUnitTest/TestRunner.h" |
19 |
|
20 |
using namespace CppUnitTest; |
21 |
|
22 |
extern "C"{ |
23 |
#include "paso/Paso_MPI.h" |
24 |
} |
25 |
|
26 |
int main(int argc, char* argv[]) |
27 |
{ |
28 |
|
29 |
#ifdef PASO_MPI |
30 |
int status = MPI_Init(&argc, &argv); |
31 |
if (status != MPI_SUCCESS) { |
32 |
std::cerr << argv[0] << ": MPI_Init failed, exiting." << std::endl; |
33 |
return status; |
34 |
} |
35 |
#endif |
36 |
|
37 |
// |
38 |
// object which runs all of the tests |
39 |
TestRunner runner; |
40 |
// |
41 |
// add the RangeTestCase suite of tests to the runner |
42 |
runner.addTest ("MeshAdapter", MeshAdapterTestCase::suite()); |
43 |
|
44 |
// actually run the unit tests. |
45 |
runner.run (argc, argv); |
46 |
|
47 |
#ifdef PASO_MPI |
48 |
MPI_Finalize(); |
49 |
#endif |
50 |
|
51 |
return 0; |
52 |
} |
53 |
|