From 8c606f586e741e7705a93d4aac7a600f96978b38 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 28 Nov 2018 22:54:46 -0600 Subject: Correct "make check-vol" regression test target. --- config/conclude.am | 6 +++--- test/Makefile.am | 2 ++ 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={}}" -- cgit v0.12