diff options
author | Anel Husakovic <anel@mariadb.org> | 2020-11-09 11:58:49 +0100 |
---|---|---|
committer | Anel Husakovic <anel@mariadb.org> | 2020-11-09 11:58:51 +0100 |
commit | cbfb0ff1133c9030e0cfcaaf75c62c2d4786fe8d (patch) | |
tree | efd1acabc0fd1c4727fa4fc63973ae3168dd9eec | |
parent | c048053c8af5083d35f764c5707c0b4ddb549846 (diff) | |
download | mariadb-git-bb-10.2-anel-MDEV-23769.tar.gz |
MDEV-23769: MTR can abort before it prints the test result summarybb-10.2-anel-MDEV-23769
- Patch is solving generating report on warning
To repeat the error run single worker:
```
./mtr --mysqld=--lock-wait-timeout=-xx 1st 1st --force --parallel 1
```
or `N` workers with `N+1` tests with failures and `force`
```
./mtr --mysqld=--lock-wait-timeout=-xx 1st 1st grant5 --force --parallel 2
```
- Patch is doing cosmetic fix of `current_test` log file which holds the old log value of test `CURRENT TEST:..` in `mark_log()` in case of `unknown option` and as such
the logic which is using it's content doesn't output valid log content and doesn't generate valid `$test->{'comment'}` message.asdf
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 900ef736a45..a493c813fea 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -971,6 +971,7 @@ sub run_test_server ($$$) { # Test failure due to warnings, force is off return ("Warnings in log", 1, $completed, $extra_warnings); } + next; } elsif ($line =~ /^SPENT/) { add_total_times($line); @@ -4184,6 +4185,7 @@ sub run_testcase ($$) { if (start_servers($tinfo)) { report_failure_and_restart($tinfo); + unlink $path_current_testlog; return 1; } } |