Commit 1889e8b0 authored by Guilhem Bichot's avatar Guilhem Bichot

Under Windows one can get \ instead of / in file names in error messages (fix...

Under Windows one can get \ instead of / in file names in error messages (fix for pushbuild warning)

mysql-test/lib/mtr_report.pl:
  Under Windows one can get \ instead of / in file names in error messages
parent ef5d4983
......@@ -416,12 +416,12 @@ sub mtr_report_stats ($) {
# maria-recovery.test has warning about missing log file
/File '.*maria_log.000.*' not found \(Errcode: 2\)/ or
# and about marked-corrupted table
/Table '.\/mysqltest\/t_corrupted1' is crashed, skipping it. Please repair it with maria_chk -r/ or
/Table '..mysqltest.t_corrupted1' is crashed, skipping it. Please repair it with maria_chk -r/ or
# maria-recover.test corrupts tables on purpose
/Checking table: '.\/mysqltest\/t_corrupted2'/ or
/Recovering table: '.\/mysqltest\/t_corrupted2'/ or
/Table '.\/mysqltest\/t_corrupted2' is marked as crashed and should be repaired/ or
/Incorrect key file for table '.\/mysqltest\/t_corrupted2.MAI'; try to repair it/
/Checking table: '..mysqltest.t_corrupted2'/ or
/Recovering table: '..mysqltest.t_corrupted2'/ or
/Table '..mysqltest.t_corrupted2' is marked as crashed and should be repaired/ or
/Incorrect key file for table '..mysqltest.t_corrupted2.MAI'; try to repair it/
)
{
next; # Skip these lines
......
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