Skip to content

Commit e052567

Browse files
committed
Minor cleanup in tests
1 parent 240935d commit e052567

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

test/ci_app_tests/ci_test_cali_before_mpi.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
// Test Caliper MPI runtime: Caliper init before mpi init
22

33
#include <caliper/cali.h>
4-
#include <caliper/cali-mpi.h>
54

65
#include <mpi.h>
76

87
int main(int argc, char* argv[])
98
{
10-
cali_mpi_init();
11-
129
CALI_CXX_MARK_FUNCTION;
1310

1411
MPI_Init(&argc, &argv);

test/ci_app_tests/ci_test_mpi_before_cali.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
// Test Caliper MPI runtime: mpi init before caliper init
22

33
#include <caliper/cali.h>
4-
#include <caliper/cali-mpi.h>
54
#include <caliper/cali-manager.h>
65

76
#include <mpi.h>
87

98
int main(int argc, char* argv[])
109
{
11-
cali_mpi_init();
12-
1310
MPI_Init(&argc, &argv);
1411

1512
int rank = 0;

0 commit comments

Comments
 (0)