forked from su2code/SU2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_driver.cpp
More file actions
66 lines (59 loc) · 1.97 KB
/
test_driver.cpp
File metadata and controls
66 lines (59 loc) · 1.97 KB
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
/*!
* \file test_driver.cpp
* \brief The main entry point for unit tests (the main()).
* \author C. Pederson
* \version 7.0.0 "Blackbird"
*
* SU2 Project Website: https://su2code.github.io
*
* The SU2 Project is maintained by the SU2 Foundation
* (http://su2foundation.org)
*
* Copyright 2012-2019, SU2 Contributors (cf. AUTHORS.md)
*
* SU2 is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* SU2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with SU2. If not, see <http://www.gnu.org/licenses/>.
*/
/*--- This marco tells Catch2 that we are defining a custom main (see
* below) This should only be done in one file. It should not be done
* in any unit test files. ---*/
#define CATCH_CONFIG_RUNNER
#include "catch.hpp"
#include "../../../Common/include/mpi_structure.hpp"
#include "../../../Common/include/option_structure.hpp"
int main(int argc, char *argv[]) {
/*--- Startup MPI, if supported ---*/
#ifdef HAVE_MPI
int buffsize;
char *buffptr;
#ifdef HAVE_OMP
int provided;
SU2_MPI::Init_thread(&argc, &argv, MPI_THREAD_FUNNELED, &provided);
#else
SU2_MPI::Init(&argc, &argv);
#endif
SU2_MPI::Buffer_attach( malloc(BUFSIZE), BUFSIZE );
SU2_Comm MPICommunicator(MPI_COMM_WORLD);
#else
SU2_Comm MPICommunicator(0);
#endif
/*--- Run the test driver supplied by Catch ---*/
int result = Catch::Session().run(argc, argv);
/*--- Finalize MPI parallelization ---*/
#ifdef HAVE_MPI
SU2_MPI::Buffer_detach(&buffptr, &buffsize);
free(buffptr);
SU2_MPI::Finalize();
#endif
return result;
}