mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
mysql-test-run.sh:
Check that there is a disabled.def before using it disabled.def: Reenable ndb tests accidently disabled
This commit is contained in:
parent
19a82124a2
commit
72e2466c0d
2 changed files with 8 additions and 14 deletions
|
@ -1541,12 +1541,14 @@ run_testcase ()
|
|||
disable_test $tname "$comment"
|
||||
return
|
||||
fi
|
||||
comment=`$GREP "^$tname *: *" $TESTDIR/disabled.def`;
|
||||
if [ -n "$comment" ]
|
||||
then
|
||||
comment=`echo $comment | sed 's/^[^:]*: *//'`
|
||||
disable_test $tname "$comment"
|
||||
return
|
||||
if [ -f "$TESTDIR/disabled.def" ] ; then
|
||||
comment=`$GREP "^$tname *: *" $TESTDIR/disabled.def`;
|
||||
if [ -n "$comment" ]
|
||||
then
|
||||
comment=`echo $comment | sed 's/^[^:]*: *//'`
|
||||
disable_test $tname "$comment"
|
||||
return
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "x$USE_EMBEDDED_SERVER" != "x1" ] ; then
|
||||
|
|
|
@ -10,11 +10,3 @@
|
|||
#
|
||||
##############################################################################
|
||||
|
||||
ndb_alter_table : NDB team needs to fix
|
||||
ndb_autodiscover : NDB team needs to fix
|
||||
ndb_autodiscover2 : NDB team needs to fix
|
||||
ndb_cache_multi : NDB team needs to fix
|
||||
ndb_cache_multi2 : NDB team needs to fix
|
||||
ndb_multi : NDB team needs to fix
|
||||
ndb_restore : NDB team needs to fix
|
||||
|
||||
|
|
Loading…
Reference in a new issue