diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-29 04:54:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-29 04:54:46 (GMT) |
commit | 8c606f586e741e7705a93d4aac7a600f96978b38 (patch) | |
tree | 4827af789c05f828192183a5b46d18f964bcfbed /config | |
parent | f3ad03a538809f14ef6f6380409ee4a340b47c97 (diff) | |
download | hdf5-8c606f586e741e7705a93d4aac7a600f96978b38.zip hdf5-8c606f586e741e7705a93d4aac7a600f96978b38.tar.gz hdf5-8c606f586e741e7705a93d4aac7a600f96978b38.tar.bz2 |
Correct "make check-vol" regression test target.
Diffstat (limited to 'config')
-rw-r--r-- | config/conclude.am | 6 |
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 |