Allow specifying $threads directly when validating
[ghc-hetmet.git] / validate
index 741daac..01d6a82 100644 (file)
--- a/validate
+++ b/validate
@@ -45,10 +45,14 @@ do
     shift
 done
 
     shift
 done
 
-if [ "$CPUS" = "" ]; then
-    threads=2
+if [ "$THREADS" = "" ]; then
+    if [ "$CPUS" = "" ]; then
+        threads=2
+    else
+        threads=$(($CPUS + 1)) # `expr $CPUS + 1`
+    fi
 else
 else
-    threads=$(($CPUS + 1)) # `expr $CPUS + 1`
+    threads="$THREADS"
 fi
 
 if [ $testsuite_only -eq 0 ]; then
 fi
 
 if [ $testsuite_only -eq 0 ]; then