diff options
author | Elena Stepanova <elenst@montyprogram.com> | 2017-08-18 13:35:40 +0300 |
---|---|---|
committer | Elena Stepanova <elenst@montyprogram.com> | 2017-08-18 13:35:40 +0300 |
commit | d947d1bf6e1ebd20c0142832bb2372bf5a5bf6bf (patch) | |
tree | cfd7f34e3d0a1109423bf0e90a1cc5ccda43551f /mysql-test/mysql-test-run.pl | |
parent | bcc1ba921829dc8b09bcbfbc5e5a916d6f1d2ca0 (diff) | |
download | mariadb-git-d947d1bf6e1ebd20c0142832bb2372bf5a5bf6bf.tar.gz |
Do not stop repeating a test even if some executions are skipped
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 5beb2956638..7bd86e66575 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -738,8 +738,7 @@ sub run_test_server ($$$) { # Repeat test $opt_repeat number of times my $repeat= $result->{repeat} || 1; - # Don't repeat if test was skipped - if ($repeat < $opt_repeat && $result->{'result'} ne 'MTR_RES_SKIPPED') + if ($repeat < $opt_repeat) { $result->{retries}= 0; $result->{rep_failures}++ if $result->{failures}; |