summaryrefslogtreecommitdiffstats
path: root/config/conclude.am
diff options
context:
space:
mode:
Diffstat (limited to 'config/conclude.am')
-rw-r--r--config/conclude.am6
1 files changed, 3 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