diff options
| author | Pjotr Prins | 2021-08-25 10:55:14 +0200 |
|---|---|---|
| committer | Pjotr Prins | 2021-08-25 10:55:14 +0200 |
| commit | b0c7f0ed464b134d1fdf6acd050f122a5ca96801 (patch) | |
| tree | 6b61ad9790332fe5b001348b1c306f481bdf7943 /Makefile | |
| parent | bda453acb2aa202a0703e8863fead0f2289c0192 (diff) | |
| download | pangemma-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-- | Makefile | 3 |
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 |
