summaryrefslogtreecommitdiff
path: root/run-test-suite.sh
diff options
context:
space:
mode:
authorAndor Penzes <andor.penzes@gmail.com>2015-12-30 01:00:49 +0100
committerAndor Penzes <andor.penzes@gmail.com>2015-12-30 01:00:49 +0100
commit3ce08cb4d4b6010b4f910c37439774161148b8ce (patch)
treed35f17dc173d16cee3474c10e0e424cce7ffad4a /run-test-suite.sh
parent768e3cac343fdb0ef158facd7bac075c7153356d (diff)
option -r in test suite to reject test cases different than the stored ones
Diffstat (limited to 'run-test-suite.sh')
-rwxr-xr-xrun-test-suite.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-test-suite.sh b/run-test-suite.sh
index 70886b9e..eee2f8a0 100755
--- a/run-test-suite.sh
+++ b/run-test-suite.sh
@@ -8,13 +8,13 @@ if [ "$1" == "--profile" ] ; then
8 cabal install --only-dependencies --enable-library-profiling --enable-executable-profiling --constraint="indentation -trifecta" 8 cabal install --only-dependencies --enable-library-profiling --enable-executable-profiling --constraint="indentation -trifecta"
9 cabal configure --flags "profiling" --enable-library-profiling --enable-executable-profiling 9 cabal configure --flags "profiling" --enable-library-profiling --enable-executable-profiling
10 cabal build 10 cabal build
11 cabal run lambdacube-compiler-test-suite -- $@ +RTS -p 11 cabal run lambdacube-compiler-test-suite -- -r $@ +RTS -p
12 ./create-test-report.sh 12 ./create-test-report.sh
13 rm lambdacube-compiler-test-suite.tix 13 rm lambdacube-compiler-test-suite.tix
14 cabal sandbox delete 14 cabal sandbox delete
15 cabal clean 15 cabal clean
16else 16else
17 cabal run lambdacube-compiler-test-suite -- $@ 17 cabal run lambdacube-compiler-test-suite -- -r $@
18 ./create-test-report.sh 18 ./create-test-report.sh
19 rm lambdacube-compiler-test-suite.tix 19 rm lambdacube-compiler-test-suite.tix
20fi 20fi