Commit 0b1fdf0b authored by Magnus Blåudd's avatar Magnus Blåudd

BUG#47129 fix small bug in test

parent c9201f9f
......@@ -94,22 +94,22 @@ DROP TABLE t1;
SET GLOBAL log_warnings = @old_log_warnings;
let $log_error= `SELECT @@GLOBAL.log_error`;
if(!$log_error)
let $log_error_= `SELECT @@GLOBAL.log_error`;
if(!`select LENGTH('$log_error_')`)
{
# MySQL Server on windows is started with --console and thus
# does not know the location of its .err log, use default location
let $log_error = $MYSQLTEST_VARDIR/log/mysqld.1.err;
let $log_error_ = $MYSQLTEST_VARDIR/log/mysqld.1.err;
}
# Assign env variable LOG_ERROR
let LOG_ERROR=$log_error;
let LOG_ERROR=$log_error_;
--echo # Count the number of times the "Unsafe" message was printed
--echo # to the error log.
perl;
use strict;
my $log_error= $ENV{'LOG_ERROR'} || die "LOG_ERROR not set";
my $log_error= $ENV{'LOG_ERROR'} or die "LOG_ERROR not set";
open(FILE, "$log_error") or die("Unable to open $log_error: $!\n");
my $count = () = grep(/Bug#46265/g,<FILE>);
print "Occurrences: $count\n";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment