Commit c282bbf0 authored by unknown's avatar unknown

./mysql-test-run test1 test2 test3

parent 49ddcb92
...@@ -304,7 +304,6 @@ fi ...@@ -304,7 +304,6 @@ fi
[ -z "$COLUMNS" ] && COLUMNS=80 [ -z "$COLUMNS" ] && COLUMNS=80
E=`$EXPR $COLUMNS - 8` E=`$EXPR $COLUMNS - 8`
#DASH72=`$EXPR substr '------------------------------------------------------------------------' 1 $E`
DASH72=`$ECHO '------------------------------------------------------------------------'|$CUT -c 1-$E` DASH72=`$ECHO '------------------------------------------------------------------------'|$CUT -c 1-$E`
# on source dist, we pick up freshly build executables # on source dist, we pick up freshly build executables
...@@ -1146,13 +1145,16 @@ then ...@@ -1146,13 +1145,16 @@ then
$RM -f $TIMEFILE # Remove for full test $RM -f $TIMEFILE # Remove for full test
fi fi
else else
tname=`$BASENAME $1 .test` while [ ! -z "$1" ]; do
tname=`$BASENAME $1 .test`
tf=$TESTDIR/$tname.$TESTSUFFIX tf=$TESTDIR/$tname.$TESTSUFFIX
if [ -f $tf ] ; then if [ -f $tf ] ; then
run_testcase $tf run_testcase $tf
else else
$ECHO "Test case $tf does not exist." $ECHO "Test case $tf does not exist."
fi fi
shift
done
fi fi
$ECHO $DASH72 $ECHO $DASH72
......
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