From 15f7bc388dc47147bfcbb07f43afb70788369d4e Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sun, 21 Mar 2010 11:28:35 +0000 Subject: [PATCH] Allow specifying $threads directly when validating --- validate | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/validate b/validate index 741daac..01d6a82 100644 --- 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 -- 1.7.10.4