1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-27 01:57:48 +03:00

Bug #39213 Could not find reason for skipping test

This commit is contained in:
Magnus Svensson 2008-09-05 16:06:08 +02:00
parent 913ec830b3
commit 40db2c21e4

6
mysql-test/mysql-test-run.pl Normal file → Executable file
View File

@ -4259,6 +4259,12 @@ sub start_mysqltest ($) {
my $extra_opts= get_extra_opts($mysqld, $tinfo);
mysqld_arguments($mysqld_args, $mysqld, $extra_opts);
mtr_add_arg($args, "--server-arg=%s", $_) for @$mysqld_args;
if (IS_WINDOWS)
{
# Trick the server to send output to stderr, with --console
mtr_add_arg($args, "--server-arg=--console");
}
}
# ----------------------------------------------------------------------