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

make mysql-test-run --gdb to work (as it does not wait for keypress anymore)

manual updated


mysql-test/t/fulltext_update.test:
  Change mode to -rw-rw-r--
Docs/manual.texi:
  updated
mysql-test/mysql-test-run.sh:
  make --gdb to work (as mysql-test-run does not wait for keypress anymore)
This commit is contained in:
unknown
2001-10-15 18:27:12 +02:00
parent 0fb3f70f79
commit 4ebea90960
2 changed files with 8 additions and 5 deletions

View File

@ -673,7 +673,9 @@ start_master()
"gdb -x $GDB_MASTER_INIT" $MYSQLD
elif [ x$DO_GDB = x1 ]
then
$ECHO "set args $master_args" > $GDB_MASTER_INIT
$ECHO "set args $master_args" > $GDB_MASTER_INIT
$ECHO "b mysql_parse" >> $GDB_MASTER_INIT
$ECHO "r" >> $GDB_MASTER_INIT
manager_launch master $XTERM -display $DISPLAY \
-title "Master" -e gdb -x $GDB_MASTER_INIT $MYSQLD
else