test/h5b_test.c:

- run  tests 'write2' and 'read2' only in parallel case
This commit is contained in:
2015-10-16 18:16:27 +02:00
parent 511fbb89de
commit 51f2210ff1
+2 -2
View File
@@ -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();
}