Correct "make check-vol" regression test target.

This commit is contained in:
Quincey Koziol 2018-11-28 22:54:46 -06:00
parent f3ad03a538
commit 8c606f586e
2 changed files with 5 additions and 3 deletions

View File

@ -270,11 +270,11 @@ check-vfd: $(LIB) $(PROGS) $(chk_TESTS)
# Run test with different Virtual Object Layer Connector
check-vol: $(LIB) $(PROGS) $(chk_TESTS)
@for vol in $(VOL_LIST) dummy; do \
if test $$vol != dummy; then \
if test "$$vol" != dummy; then \
echo "============================"; \
echo "Testing VOL Connector $$vol"; \
echo "Testing VOL Connector: \"$$vol\""; \
echo "============================"; \
$(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \
HDF5_VOL_CONNECTOR=$$vol $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \
HDF5_VOL_CONNECTOR="$$vol" $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \
fi; \
done

View File

@ -144,6 +144,8 @@ if DIRECT_VFD_CONDITIONAL
VFD_LIST += direct
endif
# Test with just the native connector, with a single pass-through connector
# and with a doubly-stacked pass-through.
VOL_LIST = native "pass_through under_vol=0;under_info={}" \
"pass_through under_vol=505;under_info={under_vol=0;under_info={}}"