Skip to content

Commit

Permalink
"make spectest" now respects TEST_JOBS
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Sep 27, 2011
1 parent a8e6d5e commit 724429c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion t/run_spectests
@@ -1,2 +1,12 @@
#!/bin/sh
grep -v "^#" t/spectest.data | sed 's|^|t/spec/|' | xargs prove -e 't/fudgeandrun' "$@"

jobs=1
if [ -z "$TEST_JOBS" ] ; then
jobs=1
else
jobs=$TEST_JOBS
fi

grep -v "^#" t/spectest.data |
sed 's|^|t/spec/|' |
xargs prove -e 't/fudgeandrun' -j $jobs "$@"

0 comments on commit 724429c

Please sign in to comment.