go back to using $CPUS + 1 for the number of threads to use
authorSimon Marlow <marlowsd@gmail.com>
Mon, 30 Mar 2009 08:30:32 +0000 (08:30 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Mon, 30 Mar 2009 08:30:32 +0000 (08:30 +0000)
validate

index b364f57..d57a095 100644 (file)
--- a/validate
+++ b/validate
@@ -48,7 +48,7 @@ done
 if [ "$CPUS" = "" ]; then
     threads=2
 else
-    threads=$((($CPUS + 1) * 2)) # `expr $CPUS + 1`
+    threads=$(($CPUS + 1)) # `expr $CPUS + 1`
 fi
 
 if [ $testsuite_only -eq 0 ]; then