mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-12 15:04:59 +08:00
[svn-r22385] Skip tests using sparse file writes on Windows. JIRA issue (JIRA HDDFV-8064) created.
This commit is contained in:
parent
823e63252b
commit
5e388aa257
@ -1178,13 +1178,17 @@ main(int argc, char **argv)
|
|||||||
* MPIO MPIO File size range test
|
* MPIO MPIO File size range test
|
||||||
*=======================================*/
|
*=======================================*/
|
||||||
MPI_BANNER("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 = test_mpio_gb_file(filenames[0]);
|
||||||
ret_code = errors_sum(ret_code);
|
ret_code = errors_sum(ret_code);
|
||||||
if (mpi_rank==0 && ret_code > 0){
|
if (mpi_rank==0 && ret_code > 0){
|
||||||
printf("***FAILED with %d total errors\n", ret_code);
|
printf("***FAILED with %d total errors\n", ret_code);
|
||||||
nerrors += 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
|
* MPIO independent overlapping writes
|
||||||
|
@ -412,8 +412,12 @@ int main(int argc, char **argv)
|
|||||||
"collective group and dataset write", &collngroups_params);
|
"collective group and dataset write", &collngroups_params);
|
||||||
AddTest("ingrpr", independent_group_read, NULL,
|
AddTest("ingrpr", independent_group_read, NULL,
|
||||||
"independent group and dataset read", &collngroups_params);
|
"independent group and dataset read", &collngroups_params);
|
||||||
|
#ifndef H5_HAVE_WIN32_API
|
||||||
AddTest("bigdset", big_dataset, NULL,
|
AddTest("bigdset", big_dataset, NULL,
|
||||||
"big dataset test", PARATESTFILE);
|
"big dataset test", PARATESTFILE);
|
||||||
|
#else
|
||||||
|
printf("big dataset test will be skipped on Windows (JIRA HDDFV-8064)\n");
|
||||||
|
#endif
|
||||||
AddTest("fill", dataset_fillvalue, NULL,
|
AddTest("fill", dataset_fillvalue, NULL,
|
||||||
"dataset fill value", PARATESTFILE);
|
"dataset fill value", PARATESTFILE);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user