Add support for skipping individual MPIX tests
If --enable_strictmpi is passed to configure, we need to skip non-MPI-standard tests.
Here is how you can do that. Suppose you have an MPIX test foobar, you need
1) In Makefile.am, to skip building foobar, add
if BUILD_MPIX_TESTS
noinst_PROGRAMS += foobar
endif
Note: There is no tab indentions before noinst_PROGRAMS
2) In testlist.in (please convert testlist to testlist.in if necessary), to skip
running foobar, add
@mpix@ foobar 2
Signed-off-by:
Pavan Balaji <balaji@anl.gov>
Please register or sign in to comment