diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-03-30 08:30:32 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-03-30 08:30:32 +0000 |
commit | 33f4c84c22896ffd2a8aabf163fcced38faf523d (patch) | |
tree | 32b9be04a0f35bd4a765faff03b9cf1049610dd7 /validate | |
parent | 31fb95918211a9ed8fde955505bda6e40019bbd0 (diff) | |
download | haskell-33f4c84c22896ffd2a8aabf163fcced38faf523d.tar.gz |
go back to using $CPUS + 1 for the number of threads to use
Diffstat (limited to 'validate')
-rw-r--r-- | validate | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |