summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/conclude.am6
-rw-r--r--test/Makefile.am2
2 files changed, 5 insertions, 3 deletions
diff --git a/config/conclude.am b/config/conclude.am
index baca60d..4655565 100644
--- a/config/conclude.am
+++ b/config/conclude.am
@@ -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
diff --git a/test/Makefile.am b/test/Makefile.am
index d950297..1526eca 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -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={}}"