summaryrefslogtreecommitdiffstats
path: root/testpar/t_mpi.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2012-05-24 14:24:17 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2012-05-24 14:24:17 (GMT)
commit82ea7b2d3c02f1e345267a969a523066baa020d1 (patch)
tree0a3e1d121bf5d72de2f45bff95a80955fa1efede /testpar/t_mpi.c
parentcb3f99d29b0edf8dc4765f19d8948384bf021519 (diff)
downloadhdf5-82ea7b2d3c02f1e345267a969a523066baa020d1.zip
hdf5-82ea7b2d3c02f1e345267a969a523066baa020d1.tar.gz
hdf5-82ea7b2d3c02f1e345267a969a523066baa020d1.tar.bz2
[svn-r22402] HDFFV-8064: Merge windows #ifdef blocks to 1.8
Trunk dailies passed
Diffstat (limited to 'testpar/t_mpi.c')
-rw-r--r--testpar/t_mpi.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c
index f05eee2..6e2348b 100644
--- a/testpar/t_mpi.c
+++ b/testpar/t_mpi.c
@@ -1178,12 +1178,17 @@ main(int argc, char **argv)
* MPIO MPIO File size range test
*=======================================*/
MPI_BANNER("MPIO File size range test...");
+#ifndef H5_HAVE_WIN32_API
ret_code = test_mpio_gb_file(filenames[0]);
ret_code = errors_sum(ret_code);
if (mpi_rank==0 && ret_code > 0){
- printf("***FAILED with %d total errors\n", ret_code);
- nerrors += ret_code;
+ printf("***FAILED with %d total errors\n", ret_code);
+ nerrors += ret_code;
}
+#else
+ if (mpi_rank==0)
+ printf(" will be skipped on Windows (JIRA HDDFV-8064)\n");
+#endif
/*=======================================