summaryrefslogtreecommitdiffstats
path: root/config/conclude.am
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-11-29 01:07:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-11-29 01:07:30 (GMT)
commitd442fe2d9815a83f5010cca9a878974e286c27f9 (patch)
treece32b6875ad90d309f81844eaeb20c4a4860025c /config/conclude.am
parent6eabeabdaa77642fd4db5fd234ccc756a24125be (diff)
downloadhdf5-d442fe2d9815a83f5010cca9a878974e286c27f9.zip
hdf5-d442fe2d9815a83f5010cca9a878974e286c27f9.tar.gz
hdf5-d442fe2d9815a83f5010cca9a878974e286c27f9.tar.bz2
Add support for "make check-vol", along with a few minor cleanups, etc.
Diffstat (limited to 'config/conclude.am')
-rw-r--r--config/conclude.am12
1 files changed, 12 insertions, 0 deletions
diff --git a/config/conclude.am b/config/conclude.am
index 4bdbb0b..baca60d 100644
--- a/config/conclude.am
+++ b/config/conclude.am
@@ -266,3 +266,15 @@ check-vfd: $(LIB) $(PROGS) $(chk_TESTS)
HDF5_DRIVER=$$vfd $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \
fi; \
done
+
+# 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 \
+ echo "============================"; \
+ echo "Testing VOL Connector $$vol"; \
+ echo "============================"; \
+ $(MAKE) $(AM_MAKEFLAGS) check-clean || exit 1; \
+ HDF5_VOL_CONNECTOR=$$vol $(MAKE) $(AM_MAKEFLAGS) check || exit 1; \
+ fi; \
+ done