mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
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
This commit is contained in:
parent
ef5d498348
commit
1889e8b075
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue