aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPjotr Prins2021-08-25 10:55:14 +0200
committerPjotr Prins2021-08-25 10:55:14 +0200
commitb0c7f0ed464b134d1fdf6acd050f122a5ca96801 (patch)
tree6b61ad9790332fe5b001348b1c306f481bdf7943 /Makefile
parentbda453acb2aa202a0703e8863fead0f2289c0192 (diff)
downloadpangemma-b0c7f0ed464b134d1fdf6acd050f122a5ca96801.tar.gz
New test suite is working and takes account of round-off problems.
Closes #247 Closes #242
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a671e46..662584c 100644
--- a/Makefile
+++ b/Makefile
@@ -237,16 +237,19 @@ fast-check: all unittests
rm -vf output/*
ruby -Eutf-8 -Itest ./test/dev_tests.rb | tee ./dev_test.log
+# Note the following tests are not robust for different architectures
old-check: all unittests
rm -vf test/output/*
cd test && ./dev_test_suite.sh | tee ../test.log
grep -q 'success rate: 100%' test.log
+# Note the following tests are not robust for different architectures
slow-check: all
rm -vf test/output/*
cd test && ./test_suite.sh | tee ../test.log
grep -q 'success rate: 100%' test.log
+# Note the following tests are not robust for different architectures
lengthy-check: all
rm -vf test/output/*
cd test && ./lengthy_test_suite.sh | tee ../lengthy_test.log