summaryrefslogtreecommitdiff
path: root/test cases/common/157 mpi/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/157 mpi/main.cpp')
-rw-r--r--test cases/common/157 mpi/main.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/test cases/common/157 mpi/main.cpp b/test cases/common/157 mpi/main.cpp
deleted file mode 100644
index 0e0b62173..000000000
--- a/test cases/common/157 mpi/main.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <mpi.h>
-
-int main(int argc, char **argv)
-{
- MPI::Init(argc, argv);
- if (!MPI::Is_initialized()) {
- printf("MPI did not initialize!\n");
- return 1;
- }
- MPI::Finalize();
-}