We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ba25d commit 1c81585Copy full SHA for 1c81585
tools/testing/dart/test_runner.dart
@@ -2622,15 +2622,6 @@ class ReplayingCommandExecutor implements CommandExecutor {
2622
2623
bool shouldRetryCommand(CommandOutput output) {
2624
var command = output.command;
2625
- // We rerun tests on Safari because 6.2 and 7.1 are flaky. Issue 21434.
2626
- if (command is BrowserTestCommand &&
2627
- command.retry &&
2628
- command.browser == 'safari' &&
2629
- output is BrowserControllerTestOutcome &&
2630
- output._rawOutcome != Expectation.PASS) {
2631
- return true;
2632
- }
2633
-
2634
if (!output.successful) {
2635
List<String> stdout, stderr;
2636
0 commit comments