You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
|
|
# BUG#58455
|
|
# Starting mysqld with defaults file without extension cause
|
|
# segmentation fault
|
|
|
|
source include/not_windows.inc;
|
|
|
|
# All these tests refer to configuration files that do not exist
|
|
|
|
--replace_result mysqld-debug mysqld
|
|
--error 1
|
|
exec $MYSQLD --defaults-file=/path/with/no/extension --print-defaults 2>&1;
|
|
|
|
--replace_result mysqld-debug mysqld
|
|
--error 1
|
|
exec $MYSQLD --defaults-file=/path/with.ext --print-defaults 2>&1;
|
|
|
|
# Using $MYSQL_TEST_DIR_ABS which contains canonical path to the
|
|
# test directory since --print-default prints the absolute path.
|
|
--replace_result mysqld-debug mysqld $MYSQL_TEST_DIR_ABS MYSQL_TEST_DIR
|
|
--error 1
|
|
exec $MYSQLD --defaults-file=relative/path/with.ext --print-defaults 2>&1;
|
|
|
|
--replace_result mysqld-debug mysqld $MYSQL_TEST_DIR_ABS MYSQL_TEST_DIR
|
|
--error 1
|
|
exec $MYSQLD --defaults-file=relative/path/without/extension --print-defaults 2>&1;
|
|
|
|
--replace_result mysqld-debug mysqld $MYSQL_TEST_DIR_ABS MYSQL_TEST_DIR
|
|
--error 1
|
|
exec $MYSQLD --defaults-file=with.ext --print-defaults 2>&1;
|
|
|
|
--replace_result mysqld-debug mysqld $MYSQL_TEST_DIR_ABS MYSQL_TEST_DIR
|
|
--error 1
|
|
exec $MYSQLD --defaults-file=no_extension --print-defaults 2>&1;
|
|
|
|
|