summaryrefslogtreecommitdiff
path: root/RunTest
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-05-01 16:39:35 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-05-01 16:39:35 +0000
commitb60ddd32c4cd77306544b9b5949a3c26477292e3 (patch)
tree37b074561a8050b0b47c0646f567fc25f208d1bd /RunTest
parentca89daa8ae72e5ac517eacd70cfb88ad4ca3d7a1 (diff)
downloadpcre-b60ddd32c4cd77306544b9b5949a3c26477292e3.tar.gz
Source tidies (trails spaces, html updates) for 8.33-RC1.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1320 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'RunTest')
-rwxr-xr-xRunTest18
1 files changed, 9 insertions, 9 deletions
diff --git a/RunTest b/RunTest
index 3ae10c8..505a0bf 100755
--- a/RunTest
+++ b/RunTest
@@ -16,7 +16,7 @@
#
# When JIT support is available, all the tests are also run with -s+ to test
# (again, almost) everything with studying and the JIT option, unless "nojit"
-# is given on the command line. There are also two tests for JIT-specific
+# is given on the command line. There are also two tests for JIT-specific
# features, one to be run when JIT support is available (unless "nojit" is
# specified), and one when it is not.
#
@@ -234,7 +234,7 @@ while [ $# -gt 0 ] ; do
-8) arg8=yes;;
-16) arg16=yes;;
-32) arg32=yes;;
- nojit) nojit=yes;;
+ nojit) nojit=yes;;
sim) shift; sim=$1;;
valgrind) valgrind="valgrind --tool=memcheck -q --smc-check=all";;
valgrind-log) valgrind="valgrind --tool=memcheck --num-callers=30 --leak-check=no --error-limit=no --smc-check=all --log-file=report.%p ";;
@@ -243,23 +243,23 @@ while [ $# -gt 0 ] ; do
skip="$skip `expr "$1" : '~\([0-9]*\)*$'`"
else
echo "Unknown option or test selector '$1'"; exit 1
- fi
- ;;
+ fi
+ ;;
*-*)
if expr "$1" : '[0-9][0-9]*-[0-9]*$' >/dev/null; then
- tf=`expr "$1" : '\([0-9]*\)'`
+ tf=`expr "$1" : '\([0-9]*\)'`
tt=`expr "$1" : '.*-\([0-9]*\)'`
- if [ "$tt" = "" ] ; then tt=$maxtest; fi
+ if [ "$tt" = "" ] ; then tt=$maxtest; fi
if expr \( "$tf" "<" 1 \) \| \( "$tt" ">" "$maxtest" \) >/dev/null; then
echo "Invalid test range '$1'"; exit 1
- fi
+ fi
while expr "$tf" "<=" "$tt" >/dev/null; do
eval do${tf}=yes
- tf=`expr $tf + 1`
+ tf=`expr $tf + 1`
done
else
echo "Invalid test range '$1'"; exit 1
- fi
+ fi
;;
*) echo "Unknown option or test selector '$1'"; exit 1;;
esac