aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/check.in
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-11-25 21:26:37 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-11-25 21:26:37 -0500
commit5923bcb1b94cd5a79dfc57f2ffe6271d999ea67d (patch)
tree8b4d720e2e271a1d22b7d1eb3435846b284ec952 /scripts/check.in
parentf795681da0fec9cd8a56f6987c903ec9a530d509 (diff)
improve the scripts for building unit tests:
* support unsupported/ * use egrep instead of grep, properly escape special chars.
Diffstat (limited to 'scripts/check.in')
-rwxr-xr-xscripts/check.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check.in b/scripts/check.in
index 2a862fd80..ff3c96441 100755
--- a/scripts/check.in
+++ b/scripts/check.in
@@ -4,9 +4,9 @@
if [ $# == 0 -o $# -ge 3 ]
then
echo "usage: ./check regexp [jobs]"
- echo " makes and runs tests matching the regexp, with <jobs> concurrent make jobs"
+ echo " makes and runs tests matching the regexp, with [jobs] concurrent make jobs"
exit 0
fi
# TODO when ctest 2.8 comes out, honor the jobs parameter
-./buildtests $* && ctest -R $1 \ No newline at end of file
+./buildtests "$1" "$2" && ctest -R "$1"