From 8cf4e0c86bed9dc02f4383289a1e5f621feca775 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 30 Jun 2005 10:10:12 +0200 Subject: [PATCH] ndb autotest - merge jebs fixes ndb/test/run-test/ndb-autotest.sh: fix eval merge jeb's fix --- ndb/test/run-test/ndb-autotest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ndb/test/run-test/ndb-autotest.sh b/ndb/test/run-test/ndb-autotest.sh index 573a9953924..4228d2354d3 100755 --- a/ndb/test/run-test/ndb-autotest.sh +++ b/ndb/test/run-test/ndb-autotest.sh @@ -84,7 +84,7 @@ fi for i in $vars do t=`echo echo \\$$i` - if [ -z `eval $t` ] + if [ -z "`eval $t`" ] then echo "Invalid config: $conf, variable $i is not set" exit @@ -301,8 +301,8 @@ choose_conf(){ echo "$test_dir/conf-$1.txt" else echo "Unable to find conf file looked for" 1>&2 - echo "$testdir/conf-$1-$HOST.txt and" 1>&2 - echo "$testdir/conf-$1.txt" 1>&2 + echo "$test_dir/conf-$1-$HOST.txt and" 1>&2 + echo "$test_dir/conf-$1.txt" 1>&2 exit fi }