aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 81367d6..dafcb38 100644
--- a/Makefile
+++ b/Makefile
@@ -144,8 +144,15 @@ slow-check: all
cd test && ./test_suite.sh | tee ../test.log
grep -q 'success rate: 100%' test.log
+lengthy-check: all
+ rm -vf test/output/*
+ cd test && ./lengthy_test_suite.sh | tee ../lengthy_test.log
+ grep -q 'success rate: 100%' lengthy_test.log
+
check: fast-check slow-check
+check-all: check lengthy-check
+
clean:
rm -vf $(SRC_DIR)/*.o
rm -vf $(SRC_DIR)/*~