summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2012-05-21 20:37:19 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2012-05-21 20:37:19 (GMT)
commit5e388aa2573c0ded711c5c86014244d3cd986528 (patch)
treecb1d459e364173d8ba8f51fa599a66b4303f1506
parent823e63252bfb33802e582199a72574095a1ca8f1 (diff)
downloadhdf5-5e388aa2573c0ded711c5c86014244d3cd986528.zip
hdf5-5e388aa2573c0ded711c5c86014244d3cd986528.tar.gz
hdf5-5e388aa2573c0ded711c5c86014244d3cd986528.tar.bz2
[svn-r22385] Skip tests using sparse file writes on Windows. JIRA issue (JIRA HDDFV-8064) created.
-rw-r--r--testpar/t_mpi.c6
-rw-r--r--testpar/testphdf5.c4
2 files changed, 9 insertions, 1 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c
index 6cba5af..2644d63 100644
--- a/testpar/t_mpi.c
+++ b/testpar/t_mpi.c
@@ -1178,13 +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;
}
-
+#else
+ if (mpi_rank==0) {
+ printf(" will be skipped on Windows (JIRA HDDFV-8064)\n");
+#endif
/*=======================================
* MPIO independent overlapping writes
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 3a86642..f27d09b 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -412,8 +412,12 @@ int main(int argc, char **argv)
"collective group and dataset write", &collngroups_params);
AddTest("ingrpr", independent_group_read, NULL,
"independent group and dataset read", &collngroups_params);
+#ifndef H5_HAVE_WIN32_API
AddTest("bigdset", big_dataset, NULL,
"big dataset test", PARATESTFILE);
+#else
+ printf("big dataset test will be skipped on Windows (JIRA HDDFV-8064)\n");
+#endif
AddTest("fill", dataset_fillvalue, NULL,
"dataset fill value", PARATESTFILE);