mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
./mysql-test-run test1 test2 test3
This commit is contained in:
parent
49ddcb92d2
commit
c282bbf0ff
1 changed files with 10 additions and 8 deletions
|
@ -304,7 +304,6 @@ fi
|
|||
|
||||
[ -z "$COLUMNS" ] && COLUMNS=80
|
||||
E=`$EXPR $COLUMNS - 8`
|
||||
#DASH72=`$EXPR substr '------------------------------------------------------------------------' 1 $E`
|
||||
DASH72=`$ECHO '------------------------------------------------------------------------'|$CUT -c 1-$E`
|
||||
|
||||
# on source dist, we pick up freshly build executables
|
||||
|
@ -1146,13 +1145,16 @@ then
|
|||
$RM -f $TIMEFILE # Remove for full test
|
||||
fi
|
||||
else
|
||||
tname=`$BASENAME $1 .test`
|
||||
tf=$TESTDIR/$tname.$TESTSUFFIX
|
||||
if [ -f $tf ] ; then
|
||||
run_testcase $tf
|
||||
else
|
||||
$ECHO "Test case $tf does not exist."
|
||||
fi
|
||||
while [ ! -z "$1" ]; do
|
||||
tname=`$BASENAME $1 .test`
|
||||
tf=$TESTDIR/$tname.$TESTSUFFIX
|
||||
if [ -f $tf ] ; then
|
||||
run_testcase $tf
|
||||
else
|
||||
$ECHO "Test case $tf does not exist."
|
||||
fi
|
||||
shift
|
||||
done
|
||||
fi
|
||||
|
||||
$ECHO $DASH72
|
||||
|
|
Loading…
Reference in a new issue