Allow specifying $threads directly when validating
authorIan Lynagh <igloo@earth.li>
Sun, 21 Mar 2010 11:28:35 +0000 (11:28 +0000)
committerIan Lynagh <igloo@earth.li>
Sun, 21 Mar 2010 11:28:35 +0000 (11:28 +0000)
validate

index 741daac..01d6a82 100644 (file)
--- 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