diff options
author | unknown <joreland@mysql.com> | 2005-06-30 10:10:12 +0200 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2005-06-30 10:10:12 +0200 |
commit | 8cf4e0c86bed9dc02f4383289a1e5f621feca775 (patch) | |
tree | 346c45888363e5c33726983d925c4ba69c354862 | |
parent | 90300c071aa63cf4b91a490f2058e83aeb35abec (diff) | |
download | mariadb-git-8cf4e0c86bed9dc02f4383289a1e5f621feca775.tar.gz |
ndb autotest - merge jebs fixes
ndb/test/run-test/ndb-autotest.sh:
fix eval
merge jeb's fix
-rwxr-xr-x | ndb/test/run-test/ndb-autotest.sh | 6 |
1 files 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 } |