From 09ae5524da40023e7439794e9388bf1ca0b30f8c Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Mon, 12 Dec 2016 12:22:40 -0800 Subject: [PATCH] Fix "make its"/"make regressions" to actually run the regression suite for bdb/hdb/mdb backends --- tests/Makefile.in | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/tests/Makefile.in b/tests/Makefile.in index 98307f79f1..e09ad37400 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -70,10 +70,33 @@ ldif test-ldif: FORCE regressions: FORCE @echo "Testing (available) ITS regressions" - @$(RUN) its-all + @$(MAKE) bdb-its + @$(MAKE) hdb-its + @$(MAKE) mdb-its its: regressions +bdb-its: bdb-its-$(BUILD_BDB) +bdb-its-no: + @echo "run configure with --enable-bdb to run BDB tests" + +bdb-its-yes bdb-its-mod: FORCE + @$(RUN) -b bdb its-all + +hdb-its: hdb-its-$(BUILD_BDB) +hdb-its-no: + @echo "run configure with --enable-hdb to run BDB tests" + +hdb-its-yes hdb-its-mod: FORCE + @$(RUN) -b hdb its-all + +mdb-its: mdb-its-$(BUILD_BDB) +mdb-its-no: + @echo "run configure with --enable-mdb to run BDB tests" + +mdb-its-yes mdb-its-mod: FORCE + @$(RUN) -b mdb its-all + clean-local: FORCE -$(RM) -r testrun configpw configpw.conf *leak *gmon *core -- 2.39.5