Commit 8cf4e0c8 authored by unknown's avatar unknown

ndb autotest - merge jebs fixes


ndb/test/run-test/ndb-autotest.sh:
  fix eval
  merge jeb's fix
parent 90300c07
...@@ -84,7 +84,7 @@ fi ...@@ -84,7 +84,7 @@ fi
for i in $vars for i in $vars
do do
t=`echo echo \\$$i` t=`echo echo \\$$i`
if [ -z `eval $t` ] if [ -z "`eval $t`" ]
then then
echo "Invalid config: $conf, variable $i is not set" echo "Invalid config: $conf, variable $i is not set"
exit exit
...@@ -301,8 +301,8 @@ choose_conf(){ ...@@ -301,8 +301,8 @@ choose_conf(){
echo "$test_dir/conf-$1.txt" echo "$test_dir/conf-$1.txt"
else else
echo "Unable to find conf file looked for" 1>&2 echo "Unable to find conf file looked for" 1>&2
echo "$testdir/conf-$1-$HOST.txt and" 1>&2 echo "$test_dir/conf-$1-$HOST.txt and" 1>&2
echo "$testdir/conf-$1.txt" 1>&2 echo "$test_dir/conf-$1.txt" 1>&2
exit exit
fi fi
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment