X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=validate;h=236fd07f7f0c3b94c2218c9860778914fbbb6ebd;hb=f3c7ab8dbd5a46ef5a7aeeb398a6d4bc1482e606;hp=741daacecb2b02fc666afbbf7ae74ce698d0a147;hpb=9347ce0f49a584fd87f9048d95972137b2c225ff;p=ghc-hetmet.git diff --git a/validate b/validate index 741daac..236fd07 100644 --- a/validate +++ b/validate @@ -45,10 +45,14 @@ do shift done -if [ "$CPUS" = "" ]; then - threads=2 +if [ "$THREADS" = "" ]; then + if [ "$CPUS" = "" ]; then + threads=2 + else + threads=$(($CPUS + 1)) # `expr $CPUS + 1` + fi else - threads=$(($CPUS + 1)) # `expr $CPUS + 1` + threads="$THREADS" fi if [ $testsuite_only -eq 0 ]; then @@ -62,7 +66,7 @@ if [ $no_clean -eq 0 ]; then INSTDIR=`cygpath -m "$INSTDIR"` fi - sh boot + /usr/bin/perl -w boot ./configure --prefix="$INSTDIR" $config_args fi @@ -73,7 +77,7 @@ echo "Validating=YES" > mk/are-validating.mk make -j$threads ValidateHpc=$hpc ValidateSlow=$slow make binary-dist-prep -make -C bindisttest TEST_PREP=YES +make test_bindist TEST_PREP=YES fi # testsuite-only