summaryrefslogtreecommitdiff
path: root/validate
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-10-07 00:43:27 +0000
committerIan Lynagh <igloo@earth.li>2010-10-07 00:43:27 +0000
commitee9343bff19c8e04747387b8622a76189468a306 (patch)
tree31faa6f2049d4c6091f42c33ecf91021019508da /validate
parent04d3b8d7ad637c6e5b8b8004a0555c4f1ead83dc (diff)
downloadhaskell-ee9343bff19c8e04747387b8622a76189468a306.tar.gz
Make "./validate --slow" run the full testsuite
Diffstat (limited to 'validate')
-rw-r--r--validate9
1 files changed, 8 insertions, 1 deletions
diff --git a/validate b/validate
index 245d0bd4fc..4fd449546d 100644
--- a/validate
+++ b/validate
@@ -98,7 +98,14 @@ then
rm -f $HPCTIXFILE
fi
-$make test stage=2 BINDIST=YES THREADS=$threads 2>&1 | tee testlog
+if [ "$slow" = YES ]
+then
+MAKE_TEST_TARGET=fulltest
+else
+MAKE_TEST_TARGET=test
+fi
+
+$make $MAKE_TEST_TARGET stage=2 BINDIST=YES THREADS=$threads 2>&1 | tee testlog
if [ "$hpc" = YES ]
then