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

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: 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 # Other issues:
15 generic_methods_type_expression_test: RuntimeError # Issue 25869
16
17 # These tests are skipped in the VM because it has "--supermixin" 14 # These tests are skipped in the VM because it has "--supermixin"
18 # functionality enabled unconditionally. The tests should be removed 15 # functionality enabled unconditionally. The tests should be removed
19 # once the same is true for analyzer (#24478) and dart2js (#23773) 16 # once the same is true for analyzer (#24478) and dart2js (#23773)
20 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 17 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773
21 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 18 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773
22 19
23 # These bugs refer currently ongoing language discussions. 20 # These bugs refer currently ongoing language discussions.
24 constructor5_test: Fail # Issue 6422 21 constructor5_test: Fail # Issue 6422
25 constructor6_test: Fail # Issue 6422 22 constructor6_test: Fail # Issue 6422
26 23
24 generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460
25
27 # Failures related to super call in ctor initializer list 26 # Failures related to super call in ctor initializer list
28 super_test: Fail, OK 27 super_test: Fail, OK
29 final_field_initialization_order_test: Fail, OK 28 final_field_initialization_order_test: Fail, OK
30 field_initialization_order_test: Fail, OK 29 field_initialization_order_test: Fail, OK
31 example_constructor_test: Fail, OK 30 example_constructor_test: Fail, OK
32 constructor3_test: Fail, OK 31 constructor3_test: Fail, OK
33 constructor2_test: Fail, OK 32 constructor2_test: Fail, OK
34 33
35 dynamic_prefix_core_test/01: RuntimeError # Issue 12478
36 multiline_strings_test: Fail # Issue 23020
37
38 # Regular bugs which should be fixed. 34 # Regular bugs which should be fixed.
39 duplicate_export_negative_test: Fail # Issue 6134 35 duplicate_export_negative_test: Fail # Issue 6134
40 36
41 deferred_redirecting_factory_test: Fail # Issue 23408
42 redirecting_constructor_initializer_test: RuntimeError # Issue 23488
43
44 # Non-contractive types are not supported in the vm. 37 # Non-contractive types are not supported in the vm.
45 cyclic_type_test/02: Fail, OK 38 cyclic_type_test/02: Fail, OK
46 cyclic_type_test/04: Fail, OK 39 cyclic_type_test/04: Fail, OK
47 cyclic_type2_test: Fail, OK 40 cyclic_type2_test: Fail, OK
48 least_upper_bound_expansive_test/*: Fail, OK 41 least_upper_bound_expansive_test/*: Fail, OK
49 42
43
44 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ]
45
46 dynamic_prefix_core_test/01: RuntimeError # Issue 12478
47 multiline_strings_test: Fail # Issue 23020
48
49 deferred_redirecting_factory_test: Fail # Issue 23408
50 #redirecting_constructor_initializer_test: RuntimeError # Issue 23488
Vyacheslav Egorov (Google) 2017/01/11 17:15:27 Why is this commented out?
kustermann 2017/01/11 19:12:19 Done.
51
50 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs. 52 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs.
51 53
52 # Fails because `as T` is an error rather than being treated like `as dynamic`.
53 generic_methods_type_expression_test: RuntimeError # Issue 27460
54
55 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 54 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
56 # These generic functions tests pass for the wrong reason in checked mode, 55 # These generic functions tests pass for the wrong reason in checked mode,
57 # because the parsed type parameters are mapped to dynamic type. 56 # because the parsed type parameters are mapped to dynamic type.
58 generic_methods_function_type_test: Pass # Issue 25869 57 generic_methods_function_type_test: Pass # Issue 25869
59 generic_methods_test: Pass # Issue 25869 58 generic_methods_test: Pass # Issue 25869
60 generic_methods_new_test: Pass # Issue 25869 59 generic_methods_new_test: Pass # Issue 25869
61 generic_local_functions_test: Pass # Issue 25869 60 generic_local_functions_test: Pass # Issue 25869
62 generic_functions_test: Pass # Issue 25869 61 generic_functions_test: Pass # Issue 25869
63 generic_methods_generic_function_parameter_test: Pass # Issue 25869 62 generic_methods_generic_function_parameter_test: Pass # Issue 25869
64 63
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 326 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276
328 327
329 [$compiler == dart2analyzer] 328 [$compiler == dart2analyzer]
330 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. 329 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash.
331 config_import_corelib_test: StaticWarning, OK 330 config_import_corelib_test: StaticWarning, OK
332 331
333 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 332 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025
334 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 333 null_bottom_test/01: Pass, CompileTimeError # Issue 28025
335 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 334 null_bottom_test/02: Pass, CompileTimeError # Issue 28025
336 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 335 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