OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_app) ] | 5 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_app) ] |
6 browser/*: SkipByDesign # Browser specific tests | 6 browser/*: SkipByDesign # Browser specific tests |
7 isolate_stress_test: Skip # Issue 12588: Uses dart:html. This should be able to
pass when we have wrapper-less tests. | 7 isolate_stress_test: Skip # Issue 12588: Uses dart:html. This should be able to
pass when we have wrapper-less tests. |
8 | 8 |
9 [ $runtime != vm || $mode == product ] | 9 [ $runtime != vm || $mode == product ] |
10 checked_test: Skip # Unsupported. | 10 checked_test: Skip # Unsupported. |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 enum_const_test/02: RuntimeError # Issue 21817 | 54 enum_const_test/02: RuntimeError # Issue 21817 |
55 | 55 |
56 [ $compiler == dart2js && $runtime != d8 ] | 56 [ $compiler == dart2js && $runtime != d8 ] |
57 error_exit_at_spawn_test: Skip # Issue 23876 | 57 error_exit_at_spawn_test: Skip # Issue 23876 |
58 error_at_spawn_test: Skip # Issue 23876 | 58 error_at_spawn_test: Skip # Issue 23876 |
59 exit_at_spawn_test: Skip # Issue 23876 | 59 exit_at_spawn_test: Skip # Issue 23876 |
60 | 60 |
61 [ $compiler == dart2js && $jscl ] | 61 [ $compiler == dart2js && $jscl ] |
62 spawn_uri_test: SkipByDesign # Loading another file is not supported in JS shell | 62 spawn_uri_test: SkipByDesign # Loading another file is not supported in JS shell |
63 | 63 |
| 64 [ $compiler == dart2js && $fast_startup ] |
| 65 browser/compute_this_script_browser_test: Fail # mirrors not supported |
| 66 browser/typed_data_message_test: Fail # mirrors not supported |
| 67 count_test: Fail # mirrors not supported |
| 68 cross_isolate_message_test: Fail # mirrors not supported |
| 69 illegal_msg_function_test: Fail # mirrors not supported |
| 70 illegal_msg_mirror_test: Fail # mirrors not supported |
| 71 isolate_complex_messages_test: Fail # mirrors not supported |
| 72 isolate_current_test: Fail # mirrors not supported |
| 73 mandel_isolate_test: Fail # mirrors not supported |
| 74 message2_test: Fail # mirrors not supported |
| 75 message_test: Fail # mirrors not supported |
| 76 mint_maker_test: Fail # mirrors not supported |
| 77 nested_spawn2_test: Fail # mirrors not supported |
| 78 nested_spawn_test: Fail # mirrors not supported |
| 79 raw_port_test: Fail # mirrors not supported |
| 80 remote_unittest_helper: Fail # mirrors not supported |
| 81 request_reply_test: Fail # mirrors not supported |
| 82 spawn_function_custom_class_test: Fail # mirrors not supported |
| 83 spawn_function_test: Fail # mirrors not supported |
| 84 stacktrace_message_test: Fail # mirrors not supported |
| 85 static_function_test: Fail # mirrors not supported |
| 86 unresolved_ports_test: Fail # mirrors not supported |
| 87 |
| 88 |
64 [ $csp ] | 89 [ $csp ] |
65 deferred_in_isolate2_test: Skip # Issue 16898. Deferred loading does not work fr
om an isolate in CSP-mode | 90 deferred_in_isolate2_test: Skip # Issue 16898. Deferred loading does not work fr
om an isolate in CSP-mode |
66 | 91 |
67 [ $compiler == dart2js && $runtime == chromeOnAndroid ] | 92 [ $compiler == dart2js && $runtime == chromeOnAndroid ] |
68 isolate_stress_test: Pass, Slow # TODO(kasperl): Please triage. | 93 isolate_stress_test: Pass, Slow # TODO(kasperl): Please triage. |
69 | 94 |
70 mandel_isolate_test: Pass, Timeout # TODO(kasperl): Please triage. | 95 mandel_isolate_test: Pass, Timeout # TODO(kasperl): Please triage. |
71 | 96 |
72 [ $compiler == dart2js && ( $runtime == ff || $runtime == safari || $runtime ==
drt || $runtime == chrome || $runtime == chromeOnAndroid) ] | 97 [ $compiler == dart2js && ( $runtime == ff || $runtime == safari || $runtime ==
drt || $runtime == chrome || $runtime == chromeOnAndroid) ] |
73 isolate_stress_test: Pass, Slow # Issue 10697 | 98 isolate_stress_test: Pass, Slow # Issue 10697 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 | 232 |
208 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] | 233 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] |
209 *: Skip # Issue #26373 | 234 *: Skip # Issue #26373 |
210 | 235 |
211 [ $hot_reload || $hot_reload_rollback ] | 236 [ $hot_reload || $hot_reload_rollback ] |
212 function_send_test: Pass, Fail # Closure identity | 237 function_send_test: Pass, Fail # Closure identity |
213 message3_test/fun: Pass, Fail # Closure identity | 238 message3_test/fun: Pass, Fail # Closure identity |
214 deferred_in_isolate_test: Crash # Requires deferred libraries | 239 deferred_in_isolate_test: Crash # Requires deferred libraries |
215 deferred_in_isolate2_test: Crash # Requires deferred libraries | 240 deferred_in_isolate2_test: Crash # Requires deferred libraries |
216 issue_21398_parent_isolate2_test: Crash # Requires deferred libraries | 241 issue_21398_parent_isolate2_test: Crash # Requires deferred libraries |
OLD | NEW |