summaryrefslogtreecommitdiff
path: root/test/regress/Makefile.levels
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/Makefile.levels')
-rw-r--r--test/regress/Makefile.levels21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/regress/Makefile.levels b/test/regress/Makefile.levels
deleted file mode 100644
index 0bd958688..000000000
--- a/test/regress/Makefile.levels
+++ /dev/null
@@ -1,21 +0,0 @@
-# This Makefile fragment allows one to use "make check" but also specify
-# a regression level.
-
-# Regression level 1 is the default
-ALL_TESTS = $(REG0_TESTS) $(REG1_TESTS)
-
-ifeq ($(REGRESSION_LEVEL),0)
-ALL_TESTS = $(REG0_TESTS)
-endif
-ifeq ($(REGRESSION_LEVEL),2)
-ALL_TESTS = $(REG0_TESTS) $(REG1_TESTS) $(REG2_TESTS)
-endif
-ifeq ($(REGRESSION_LEVEL),3)
-ALL_TESTS = $(REG0_TESTS) $(REG1_TESTS) $(REG2_TESTS) $(REG3_TESTS)
-endif
-ifeq ($(REGRESSION_LEVEL),4)
-ALL_TESTS = $(REG0_TESTS) $(REG1_TESTS) $(REG2_TESTS) $(REG3_TESTS) $(REG4_TESTS)
-endif
-
-TEST_REGEX ?= ".*"
-TESTS = $(shell echo $(ALL_TESTS) | tr ' ' '\n' | grep $(TEST_REGEX) | tr '\n' ' ')
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback