Commit 7cfc7d72 authored by Tor Didriksen's avatar Tor Didriksen

Skip perfschema.misc if "var" is a symlink (due to Bug 51447).


mysql-test/include/not_var_link.inc:
  Chop off /$child_num before testing if "var" is a symlink
parent b2b8a220
# Test if MYSQLTEST_VARDIR is a soft link
# If we run in parallel, we have a suffix "/$child_num", so chop off that.
perl; perl;
my $path= $ENV{'MYSQLTEST_VARDIR'};
$path=~ s|/\d+$||;
open (ISLINK, ">" . $ENV{'MYSQL_TMP_DIR'} . "/mtr_var_link"); open (ISLINK, ">" . $ENV{'MYSQL_TMP_DIR'} . "/mtr_var_link");
my $mvr= -l $ENV{'MYSQLTEST_VARDIR'} ? 1 : 0; my $mvr= -l $path ? 1 : 0;
print ISLINK "let \$mtr_var_link= $mvr;\n"; print ISLINK "let \$mtr_var_link= $mvr;\n";
close ISLINK; close ISLINK;
EOF EOF
......
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