From 33f4c84c22896ffd2a8aabf163fcced38faf523d Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Mon, 30 Mar 2009 08:30:32 +0000 Subject: [PATCH] go back to using $CPUS + 1 for the number of threads to use --- validate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate b/validate index b364f57..d57a095 100644 --- 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 -- 1.7.10.4