diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-02-17 04:39:22 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-02-17 04:39:22 (GMT) |
commit | a3a9df36579a76bece85ec8e59b285b7a25e676b (patch) | |
tree | 21c245e3c3e6ac9a1e11a1496b5dfec877d92c50 /testpar/testphdf5.c | |
parent | 8ed6e885439d7acd4f68e078b1f3dc221e15fc0b (diff) | |
download | hdf5-a3a9df36579a76bece85ec8e59b285b7a25e676b.zip hdf5-a3a9df36579a76bece85ec8e59b285b7a25e676b.tar.gz hdf5-a3a9df36579a76bece85ec8e59b285b7a25e676b.tar.bz2 |
[svn-r1071] Moved the MPI test to a file of its own (t_mpi.c) for future addition
of other MPI tests.
Changed return code tests from comparing with FAIL to with 0.
Updated MANIFEST for the addition of a new file.
Tested in O2k.
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index b067dd5..dfa0ab8 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -197,14 +197,14 @@ main(int argc, char **argv) } if (dowrite){ - MPI_BANNER("testing dataset using split communicators..."); - test_split_comm_access(filenames); - -#ifdef MPIOTEST +#ifndef MPIOTEST MPI_BANNER("testing MPIO independent overlapping writes..."); test_mpio_overlap_writes(filenames); #endif + MPI_BANNER("testing dataset using split communicators..."); + test_split_comm_access(filenames); + MPI_BANNER("testing dataset independent write..."); dataset_writeInd(filenames[0]); |