mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
fbd4378b85
- Add printout of "Warning" or "Note" for non error messages in default_reporter - Add test for the above in new mysqladmin.test mysql-test/mysql-test-run.pl: Add support for mysqladmin to mysql-test-run.pl mysys/my_getopt.c: Add printout of Warning: or Info: in 'default_reporter', this will make the user aware of the problem but can filter it as a warning or note. mysql-test/r/mysqladmin.result: New BitKeeper file ``mysql-test/r/mysqladmin.result'' mysql-test/t/mysqladmin.test: New BitKeeper file ``mysql-test/t/mysqladmin.test''
32 lines
901 B
Text
32 lines
901 B
Text
#
|
|
# Test "mysqladmin ping"
|
|
#
|
|
|
|
--exec $MYSQLADMIN --no-defaults -S $MASTER_MYSOCK -P $MASTER_MYPORT -u root --password= ping 2>&1
|
|
|
|
|
|
#
|
|
# Bug#10608 mysqladmin breaks on "database" variable in my.cnf
|
|
#
|
|
|
|
# When mysqladmin finds database in .cnf file it shall fail
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bug10608.cnf
|
|
[client]
|
|
database=db1
|
|
EOF
|
|
|
|
--replace_regex /\/.*mysqladmin/mysqladmin/
|
|
--error 7
|
|
--exec $MYSQLADMIN --defaults-file=$MYSQLTEST_VARDIR/tmp/bug10608.cnf -S $MASTER_MYSOCK -P $MASTER_MYPORT -u root --password= ping 2>&1
|
|
|
|
|
|
# When mysqladmin finds "loose-database" in .cnf file it shall print
|
|
# a warning and continue
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bug10608.cnf
|
|
[client]
|
|
loose-database=db2
|
|
EOF
|
|
|
|
--replace_regex /Warning: .*mysqladmin/Warning: mysqladmin/
|
|
--exec $MYSQLADMIN --defaults-file=$MYSQLTEST_VARDIR/tmp/bug10608.cnf -S $MASTER_MYSOCK -P $MASTER_MYPORT -u root --password= ping 2>&1
|
|
|