| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # Flaky failures | 5 # Flaky failures |
| 6 vm_timeline_flags_test: Pass, RuntimeError # Issue 26483 | 6 vm_timeline_flags_test: Pass, RuntimeError # Issue 26483 |
| 7 gc_test: Pass, RuntimeError # Issue 26490 | 7 gc_test: Pass, RuntimeError # Issue 26490 |
| 8 pause_on_start_and_exit_test: Pass, RuntimeError # Issue 26470 | 8 pause_on_start_and_exit_test: Pass, RuntimeError # Issue 26470 |
| 9 pause_on_start_then_step_test: Pass, RuntimeError # Issue 26470 | 9 pause_on_start_then_step_test: Pass, RuntimeError # Issue 26470 |
| 10 get_allocation_samples_test: Pass, RuntimeError # Inconsistent stack trace | 10 get_allocation_samples_test: Pass, RuntimeError # Inconsistent stack trace |
| 11 # Reload is slow on the bots | 11 # Reload is slow on the bots |
| 12 reload_sources_test: Pass, Slow | 12 reload_sources_test: Pass, Slow |
| 13 | 13 |
| 14 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] | 14 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] |
| 15 evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 | 15 evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 |
| 16 evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 | 16 evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 |
| 17 isolate_lifecycle_test: Pass, RuntimeError # Issue 24174 | 17 isolate_lifecycle_test: Pass, RuntimeError # Issue 24174 |
| 18 | 18 |
| 19 # Debugger location tests are slow in debug mode. | 19 # Debugger location tests are slow in debug mode. |
| 20 [ $mode == debug ] | 20 [ $mode == debug ] |
| 21 debugger_location_second_test: Pass, Slow | 21 debugger_location_second_test: Pass, Slow |
| 22 debugger_location_test: Pass, Slow | 22 debugger_location_test: Pass, Slow |
| 23 | 23 |
| 24 # Disable on simulators. | 24 # These tests are slow on simulators. |
| 25 [ $arch == simarm || $arch == simmips || $arch == simarm64 ] | 25 [ $arch == simarm || $arch == simmips || $arch == simarm64 ] |
| 26 *: Pass, Slow |
| 27 [ $mode == debug && ($arch == simarm || $arch == simmips || $arch == simarm64) ] |
| 26 *: SkipSlow | 28 *: SkipSlow |
| 27 | 29 |
| 28 # All tests use dart:io | 30 # All tests use dart:io |
| 29 [ $browser || $compiler == dart2js ] | 31 [ $browser || $compiler == dart2js ] |
| 30 *: SkipByDesign | 32 *: SkipByDesign |
| 31 | 33 |
| 32 # Tests with known analyzer issues | 34 # Tests with known analyzer issues |
| 33 [ $compiler == dart2analyzer ] | 35 [ $compiler == dart2analyzer ] |
| 34 developer_extension_test: SkipByDesign | 36 developer_extension_test: SkipByDesign |
| 35 get_isolate_after_language_error_test: SkipByDesign | 37 get_isolate_after_language_error_test: SkipByDesign |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 *: SkipByDesign # The service tests should run without being reloaded. | 74 *: SkipByDesign # The service tests should run without being reloaded. |
| 73 | 75 |
| 74 [ $system == windows ] | 76 [ $system == windows ] |
| 75 dev_fs_weird_char_test: Skip # Windows disallows question mark in paths | 77 dev_fs_weird_char_test: Skip # Windows disallows question mark in paths |
| 76 dev_fs_http_put_weird_char_test: Skip # Windows disallows carriage returns in pa
ths | 78 dev_fs_http_put_weird_char_test: Skip # Windows disallows carriage returns in pa
ths |
| 77 complex_reload_test: Skip # Issue 27861 | 79 complex_reload_test: Skip # Issue 27861 |
| 78 | 80 |
| 79 # Service protocol is not supported in product mode. | 81 # Service protocol is not supported in product mode. |
| 80 [ $mode == product ] | 82 [ $mode == product ] |
| 81 *: SkipByDesign | 83 *: SkipByDesign |
| OLD | NEW |