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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
6 # current state of the language. | 6 # current state of the language. |
7 | 7 |
8 # Trailing commas are so far supported by: | 8 # Trailing commas are so far supported by: |
9 # - The VM (vm, dartium, drt, precompiler+dart_precompiled) | 9 # - The VM (vm, dartium, drt, precompiler+dart_precompiled) |
| 10 # - dart2js |
10 # Remaining targets still fail on arg_param_trailing_comma_test/none. | 11 # Remaining targets still fail on arg_param_trailing_comma_test/none. |
11 [($compiler != none && $compiler != precompiler) || ($runtime != vm && $runtime
!= dartium && $runtime != drt && $runtime != dart_precompiled)] | 12 [ $compiler == dart2analyzer ] |
12 arg_param_trailing_comma_test/none: Fail # Issue 26644 | 13 arg_param_trailing_comma_test/none: Fail # Issue 26644 |
13 | 14 |
14 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] | 15 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] |
15 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating | 16 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating |
16 | 17 |
17 # These tests are skipped in the VM because it has "--supermixin" | 18 # These tests are skipped in the VM because it has "--supermixin" |
18 # functionality enabled unconditionally. The tests should be removed | 19 # functionality enabled unconditionally. The tests should be removed |
19 # once the same is true for analyzer (#24478) and dart2js (#23773) | 20 # once the same is true for analyzer (#24478) and dart2js (#23773) |
20 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 | 21 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 |
21 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 | 22 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 large_class_declaration_test: Skip | 249 large_class_declaration_test: Skip |
249 | 250 |
250 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] | 251 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] |
251 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 | 252 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 |
252 issue23244_test: Skip # Issue #26373 | 253 issue23244_test: Skip # Issue #26373 |
253 | 254 |
254 [ $hot_reload ] | 255 [ $hot_reload ] |
255 deferred_load_inval_code_test: RuntimeError | 256 deferred_load_inval_code_test: RuntimeError |
256 regress_26453_test: Pass, Fail, Crash | 257 regress_26453_test: Pass, Fail, Crash |
257 vm/regress_16873_test: Pass, Crash | 258 vm/regress_16873_test: Pass, Crash |
OLD | NEW |