Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: tests/language/language.status

Issue 2624973004: VM: [Kernel] Merge common test expectations from language_kernel.status -> language.status (Closed)
Patch Set: Rebased Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tests/language/language_kernel.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # These test entries will be valid for vm/dartium (with and without kernel).
8 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ] 9 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ]
9 async_star_cancel_while_paused_test: RuntimeError 10 async_star_cancel_while_paused_test: RuntimeError
10 # This is OK for now, but we may want to change the semantics to match the test. 11 # This is OK for now, but we may want to change the semantics to match the test.
11 async_star_pause_test: Fail, OK 12 async_star_pause_test: Fail, OK
12 13
13 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ]
14 enum_test: RuntimeError # Issue 28341
15 # Other issues:
16 generic_methods_type_expression_test: RuntimeError # Issue 25869
17
18 # These tests are skipped in the VM because it has "--supermixin" 14 # These tests are skipped in the VM because it has "--supermixin"
19 # functionality enabled unconditionally. The tests should be removed 15 # functionality enabled unconditionally. The tests should be removed
20 # once the same is true for analyzer (#24478) and dart2js (#23773) 16 # once the same is true for analyzer (#24478) and dart2js (#23773)
21 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 17 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773
22 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 18 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773
23 19
24 # These bugs refer currently ongoing language discussions. 20 # These bugs refer currently ongoing language discussions.
25 constructor5_test: Fail # Issue 6422 21 constructor5_test: Fail # Issue 6422
26 constructor6_test: Fail # Issue 6422 22 constructor6_test: Fail # Issue 6422
27 23
24 generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460
25
28 # Failures related to super call in ctor initializer list 26 # Failures related to super call in ctor initializer list
29 super_test: Fail, OK 27 super_test: Fail, OK
30 final_field_initialization_order_test: Fail, OK 28 final_field_initialization_order_test: Fail, OK
31 field_initialization_order_test: Fail, OK 29 field_initialization_order_test: Fail, OK
32 example_constructor_test: Fail, OK 30 example_constructor_test: Fail, OK
33 constructor3_test: Fail, OK 31 constructor3_test: Fail, OK
34 constructor2_test: Fail, OK 32 constructor2_test: Fail, OK
35 33
36 dynamic_prefix_core_test/01: RuntimeError # Issue 12478
37 multiline_strings_test: Fail # Issue 23020
38
39 # Regular bugs which should be fixed. 34 # Regular bugs which should be fixed.
40 duplicate_export_negative_test: Fail # Issue 6134 35 duplicate_export_negative_test: Fail # Issue 6134
41 36
42 deferred_redirecting_factory_test: Fail # Issue 23408
43 redirecting_constructor_initializer_test: RuntimeError # Issue 23488
44
45 # Non-contractive types are not supported in the vm. 37 # Non-contractive types are not supported in the vm.
46 cyclic_type_test/02: Fail, OK 38 cyclic_type_test/02: Fail, OK
47 cyclic_type_test/04: Fail, OK 39 cyclic_type_test/04: Fail, OK
48 cyclic_type2_test: Fail, OK 40 cyclic_type2_test: Fail, OK
49 least_upper_bound_expansive_test/*: Fail, OK 41 least_upper_bound_expansive_test/*: Fail, OK
50 42
43
44 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ]
45
46 enum_test: RuntimeError # Issue 28341
47
48 dynamic_prefix_core_test/01: RuntimeError # Issue 12478
49 multiline_strings_test: Fail # Issue 23020
50
51 deferred_redirecting_factory_test: Fail # Issue 23408
52 redirecting_constructor_initializer_test: RuntimeError # Issue 23488
53
51 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs. 54 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs.
52 55
53 # Fails because `as T` is an error rather than being treated like `as dynamic`.
54 generic_methods_type_expression_test: RuntimeError # Issue 27460
55
56 # Doesn't yet implement `covariant` keyword. 56 # Doesn't yet implement `covariant` keyword.
57 covariant_test/none: Fail # Issue 28166 57 covariant_test/none: Fail # Issue 28166
58 covariant_override_test: Fail # Issue 28166 58 covariant_override_test: Fail # Issue 28166
59 59
60 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 60 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
61 # These generic functions tests pass for the wrong reason in checked mode, 61 # These generic functions tests pass for the wrong reason in checked mode,
62 # because the parsed type parameters are mapped to dynamic type. 62 # because the parsed type parameters are mapped to dynamic type.
63 generic_methods_function_type_test: Pass # Issue 25869 63 generic_methods_function_type_test: Pass # Issue 25869
64 generic_methods_test: Pass # Issue 25869 64 generic_methods_test: Pass # Issue 25869
65 generic_methods_new_test: Pass # Issue 25869 65 generic_methods_new_test: Pass # Issue 25869
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 332 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276
333 333
334 [$compiler == dart2analyzer] 334 [$compiler == dart2analyzer]
335 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. 335 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash.
336 config_import_corelib_test: StaticWarning, OK 336 config_import_corelib_test: StaticWarning, OK
337 337
338 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 338 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025
339 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 339 null_bottom_test/01: Pass, CompileTimeError # Issue 28025
340 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 340 null_bottom_test/02: Pass, CompileTimeError # Issue 28025
341 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 341 null_bottom_test/03: Pass, CompileTimeError # Issue 28025
OLDNEW
« no previous file with comments | « no previous file | tests/language/language_kernel.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698