summaryrefslogtreecommitdiff
path: root/conformance
diff options
context:
space:
mode:
authorbehdad <behdad>2001-04-07 13:32:49 +0000
committerbehdad <behdad>2001-04-07 13:32:49 +0000
commit76913dfa8089aa05ce36e99448ab8a9ec75b84f3 (patch)
treeaef13af4447639ec03958b677a501d47feba3df0 /conformance
parente8eb851c0f4cd3d6bc9ba1083521072b8882779a (diff)
Small script changes
Diffstat (limited to 'conformance')
-rwxr-xr-xconformance/dotest2
-rwxr-xr-xconformance/findbad2
-rwxr-xr-xconformance/findbads2
3 files changed, 3 insertions, 3 deletions
diff --git a/conformance/dotest b/conformance/dotest
index cfc47ee..3ffe06b 100755
--- a/conformance/dotest
+++ b/conformance/dotest
@@ -13,4 +13,4 @@ fi
$path/$generator $1 | sed 's|\\\\||g' > $path/test.in
shift
-$path/test $@ $path/test.in
+$path/test "$@" $path/test.in
diff --git a/conformance/findbad b/conformance/findbad
index 7144b78..dda2c09 100755
--- a/conformance/findbad
+++ b/conformance/findbad
@@ -8,4 +8,4 @@ trap 'echo; rm -f $path/test.{in,out,ref} &> /dev/null ; exit' INT
while ! test "`$path/dotest $1`"; do echo -n .; done
shift
-$path/test $@ $path/test.in
+$path/test "$@" $path/test.in
diff --git a/conformance/findbads b/conformance/findbads
index 3344320..87570f8 100755
--- a/conformance/findbads
+++ b/conformance/findbads
@@ -7,7 +7,7 @@ path=`dirname $0`
trap 'rm -f $path/test.{in,out,ref} &> /dev/null ; exit' INT
while true; do
- $path/findbad $@
+ $path/findbad "$@"
echo -e "findbads: bad test found!!!\7"
if ! test -d $path/badtests; then
mkdir $path/badtests