| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 829c9844033637440992838c1a2f8eabb7397367..1bdd0c7aa01c1f3a6e3c8cc27e4f33aa771488c3 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -2624,6 +2624,15 @@ class ReplayingCommandExecutor implements CommandExecutor {
|
|
|
| bool shouldRetryCommand(CommandOutput output) {
|
| var command = output.command;
|
| + // We rerun tests on Safari because 6.2 and 7.1 are flaky. Issue 21434.
|
| + if (command is BrowserTestCommand &&
|
| + command.retry &&
|
| + command.browser == 'safari' &&
|
| + output is BrowserControllerTestOutcome &&
|
| + output._rawOutcome != Expectation.PASS) {
|
| + return true;
|
| + }
|
| +
|
| if (!output.successful) {
|
| List<String> stdout, stderr;
|
|
|
|
|