From edb260b4f4e79433f38bdda11bc84fa5ee56b080 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Mon, 31 Jul 2017 15:38:26 -0400 Subject: Move MPI tests into frameworks. This prevents them being cross-compiled (which wouldn't work without MPI cross-compilers) and disables Windows builds (will need to be fixed later.) --- test cases/frameworks/17 mpi/main.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test cases/frameworks/17 mpi/main.cpp (limited to 'test cases/frameworks/17 mpi/main.cpp') diff --git a/test cases/frameworks/17 mpi/main.cpp b/test cases/frameworks/17 mpi/main.cpp new file mode 100644 index 000000000..0e0b62173 --- /dev/null +++ b/test cases/frameworks/17 mpi/main.cpp @@ -0,0 +1,11 @@ +#include + +int main(int argc, char **argv) +{ + MPI::Init(argc, argv); + if (!MPI::Is_initialized()) { + printf("MPI did not initialize!\n"); + return 1; + } + MPI::Finalize(); +} -- cgit v1.2.3