TST: Mark tst_filter.sh XFAIL on MinGW

Attempting to add a filter to a netCDF file using `nccopy` results in
a file without `_Filter` attribute set.  I suspect this is a problem
with HDF5, but I don't remember why and never got around to testing
that.  The rest of the plugin tests pass, so I'm telling the test
runner to expect this one test to fail and see if there are other
failures.
This commit is contained in:
DWesl 2022-07-05 10:54:35 -04:00
parent 5c9722f5bf
commit c805b02143

View File

@ -49,6 +49,12 @@ endif
# Build test programs plus programs used in test scripts.
check_PROGRAMS = $(NC4_TESTS) tst_empty_vlen_unlim tst_charvlenbug tst_vlenstr
TESTS = $(NC4_TESTS) run_empty_vlen_test.sh
XFAIL_TESTS =
if ISCYGWIN
TESTS += tst_h_strbug tst_h_refs
XFAIL_TESTS += tst_h_strbug tst_h_refs
endif
# Add these if large file tests are turned on.
if LARGE_FILE_TESTS
@ -89,7 +95,10 @@ TESTS += tst_filter.sh
TESTS += tst_unknown.sh
TESTS += tst_specific_filters.sh
TESTS += tst_bloscfail.sh
endif
if ISMINGW
XFAIL_TESTS += tst_filter.sh
endif # ISMINGW
endif # ENABLE_FILTER_TESTING
endif # USE_HDF5
endif # BUILD_UTILITIES