| 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 get_isolate_rpc_test: Pass, RuntimeError # Issue 28185 | 11 get_isolate_rpc_test: Pass, RuntimeError # Issue 28185 |
| 12 set_library_debuggable_test: Pass, RuntimeError # Issue 28091 | 12 set_library_debuggable_test: Pass, RuntimeError # Issue 28091 |
| 13 reload_sources_test: Pass, Slow # Reload is slow on the bots | 13 reload_sources_test: Pass, Slow # Reload is slow on the bots |
| 14 rewind_test: Pass, RuntimeError # Issue 28047 | 14 rewind_test: Pass, RuntimeError # Issue 28047 |
| 15 tcp_socket_service_test: Pass, RuntimeError # Issue 28184 | 15 tcp_socket_service_test: Pass, RuntimeError # Issue 28184 |
| 16 get_retained_size_rpc_test: Pass, RuntimeError # Issue 28193 | 16 get_retained_size_rpc_test: Pass, RuntimeError # Issue 28193 |
| 17 | 17 |
| 18 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] | 18 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] |
| 19 evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 | 19 evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 |
| 20 evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 | 20 evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 |
| 21 isolate_lifecycle_test: Pass, RuntimeError # Issue 24174 | 21 isolate_lifecycle_test: Pass, RuntimeError # Issue 24174 |
| 22 | 22 |
| 23 # Debugger location tests are slow in debug mode. | 23 # Debugger location tests are slow in debug mode. |
| 24 [ $mode == debug ] | 24 [ $mode == debug ] |
| 25 debugger_location_second_test: Pass, Slow | 25 debugger_location_second_test: Pass, Slow |
| 26 debugger_location_test: Pass, Slow | 26 debugger_location_test: Pass, Slow |
| 27 | 27 |
| 28 # Can be slow in debug mode, as well. |
| 29 vm_restart_test: Pass, Slow |
| 30 |
| 28 # These tests are slow on simulators. | 31 # These tests are slow on simulators. |
| 29 [ $arch == simarm || $arch == simmips || $arch == simarm64 ] | 32 [ $arch == simarm || $arch == simmips || $arch == simarm64 ] |
| 30 *: Pass, Slow | 33 *: Pass, Slow |
| 31 [ $mode == debug && ($arch == simarm || $arch == simmips || $arch == simarm64) ] | 34 [ $mode == debug && ($arch == simarm || $arch == simmips || $arch == simarm64) ] |
| 32 *: SkipSlow | 35 *: SkipSlow |
| 33 | 36 |
| 34 # All tests use dart:io | 37 # All tests use dart:io |
| 35 [ $browser || $compiler == dart2js ] | 38 [ $browser || $compiler == dart2js ] |
| 36 *: SkipByDesign | 39 *: SkipByDesign |
| 37 | 40 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 *: SkipByDesign # The service tests should run without being reloaded. | 202 *: SkipByDesign # The service tests should run without being reloaded. |
| 200 | 203 |
| 201 [ $system == windows ] | 204 [ $system == windows ] |
| 202 dev_fs_weird_char_test: Skip # Windows disallows question mark in paths | 205 dev_fs_weird_char_test: Skip # Windows disallows question mark in paths |
| 203 dev_fs_http_put_weird_char_test: Skip # Windows disallows carriage returns in pa
ths | 206 dev_fs_http_put_weird_char_test: Skip # Windows disallows carriage returns in pa
ths |
| 204 complex_reload_test: Skip # Issue 27861 | 207 complex_reload_test: Skip # Issue 27861 |
| 205 | 208 |
| 206 # Service protocol is not supported in product mode. | 209 # Service protocol is not supported in product mode. |
| 207 [ $mode == product ] | 210 [ $mode == product ] |
| 208 *: SkipByDesign | 211 *: SkipByDesign |
| OLD | NEW |