Skip to content

Commit

Permalink
Move skip to correct test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Mar 18, 2024
1 parent ef5be54 commit c10fdef
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions test/API/H5_api_dataset_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -9861,14 +9861,17 @@ test_dataset_vlen_io(void)

/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE)) {
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE)) {
SKIPPED();
printf(" API functions for basic file, group, or dataset aren't supported with this "
"connector\n");
return 0;
}

/* Skipped for now due to segfault with the Cache VOL */
SKIPPED();
return 0;

TESTING_2("test setup");

if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
Expand Down Expand Up @@ -10512,10 +10515,6 @@ test_dataset_set_extent_chunked_unlimited(void)

TESTING("H5Dset_extent on chunked dataset with unlimited dimensions");

/* Skipped for now due to segfault with the Cache VOL */
SKIPPED();
return 0;

/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE) ||
Expand Down

0 comments on commit c10fdef

Please sign in to comment.