1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00
Files
mariadb/mysql-test/main/flush_logs_not_windows.test

20 lines
712 B
Plaintext

# Tests will be skipped for the view protocol because the view protocol creates
# an additional util connection and other statistics data
-- source include/no_view_protocol.inc
source include/not_windows.inc;
source include/not_embedded.inc;
source include/not_as_root.inc;
#
# MDEV-17710 "unknown error" with FLUSH LOGS if log directory is not writeable
#
move_file $MYSQLTEST_VARDIR/log/mysqld.1.err $MYSQLTEST_VARDIR/log/mysqld.1.err-bak;
system chmod u-w $MYSQLTEST_VARDIR/log;
replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR;
error ER_CANT_CREATE_FILE;
flush logs;
system chmod u+w $MYSQLTEST_VARDIR/log;
move_file $MYSQLTEST_VARDIR/log/mysqld.1.err-bak $MYSQLTEST_VARDIR/log/mysqld.1.err;
flush logs;