1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

mysql-test-run.sh:

Check that there is a disabled.def before using it
disabled.def:
  Reenable ndb tests accidently disabled


mysql-test/t/disabled.def:
  Reenable ndb tests accidently disabled
mysql-test/mysql-test-run.sh:
  Check that there is a disabled.def before using it
This commit is contained in:
unknown
2005-03-16 09:23:38 +01:00
parent 8c45e43ece
commit 6f36a062c9
2 changed files with 8 additions and 14 deletions

View File

@ -1541,12 +1541,14 @@ run_testcase ()
disable_test $tname "$comment" disable_test $tname "$comment"
return return
fi fi
comment=`$GREP "^$tname *: *" $TESTDIR/disabled.def`; if [ -f "$TESTDIR/disabled.def" ] ; then
if [ -n "$comment" ] comment=`$GREP "^$tname *: *" $TESTDIR/disabled.def`;
then if [ -n "$comment" ]
comment=`echo $comment | sed 's/^[^:]*: *//'` then
disable_test $tname "$comment" comment=`echo $comment | sed 's/^[^:]*: *//'`
return disable_test $tname "$comment"
return
fi
fi fi
if [ "x$USE_EMBEDDED_SERVER" != "x1" ] ; then if [ "x$USE_EMBEDDED_SERVER" != "x1" ] ; then

View File

@ -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