From 51f2210ff199d04508e63eb96dcb7c9675453a96 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 16 Oct 2015 18:16:27 +0200 Subject: [PATCH] test/h5b_test.c: - run tests 'write2' and 'read2' only in parallel case --- test/h5b_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/h5b_test.c b/test/h5b_test.c index 5f67a54..4139b0f 100644 --- a/test/h5b_test.c +++ b/test/h5b_test.c @@ -88,9 +88,10 @@ int main(int argc, char **argv) /* Tests are generally arranged from least to most complexity... */ AddTest("write1", h5b_test_write1, NULL, "Write 64-bit data", NULL); AddTest("read1", h5b_test_read1, NULL, "Read 64-bit data", NULL); +#ifdef PARALLEL_IO AddTest("write2", h5b_test_write2, NULL, "Write 32-bit data", NULL); AddTest("read2", h5b_test_read2, NULL, "Read 32-bit data", NULL); - +#endif /* Display testing information */ TestInfo(argv[0]); @@ -117,4 +118,3 @@ int main(int argc, char **argv) #endif return GetTestNumErrs(); } -