From e2ae36f149bdde75c59c1392469e9b1e64daf52c Mon Sep 17 00:00:00 2001 From: toddouska Date: Mon, 20 Aug 2012 16:40:41 -0700 Subject: [PATCH] add multi job support to first precommit make test --- commit-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commit-tests.sh b/commit-tests.sh index a1879f707..c9aff4d51 100755 --- a/commit-tests.sh +++ b/commit-tests.sh @@ -5,7 +5,7 @@ # make sure current config is ok echo -e "\n\nTesting current config...\n\n" -make test; +make -j 8 test; RESULT=$? [ $RESULT -ne 0 ] && echo -e "\n\nCurrent config make test failed" && exit 1