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

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

Issue 2627873002: VM: [Kernel] Fix remaining issues with kernel-based async/await implementation (Closed)
Patch Set: postfix -> prefix increment 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 | « tests/co19/co19-kernel.status ('k') | 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 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ]
9 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 async_star_pause_test: Fail, OK
12
8 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] 13 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ]
9 # Other issues: 14 # Other issues:
10 generic_methods_type_expression_test: RuntimeError # Issue 25869 15 generic_methods_type_expression_test: RuntimeError # Issue 25869
11 16
12 # This is OK for now, but we may want to change the semantics to match the test.
13 async_star_pause_test: Fail, OK
14
15 # These tests are skipped in the VM because it has "--supermixin" 17 # These tests are skipped in the VM because it has "--supermixin"
16 # functionality enabled unconditionally. The tests should be removed 18 # functionality enabled unconditionally. The tests should be removed
17 # once the same is true for analyzer (#24478) and dart2js (#23773) 19 # once the same is true for analyzer (#24478) and dart2js (#23773)
18 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 20 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773
19 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 21 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773
20 22
21 # These bugs refer currently ongoing language discussions. 23 # These bugs refer currently ongoing language discussions.
22 constructor5_test: Fail # Issue 6422 24 constructor5_test: Fail # Issue 6422
23 constructor6_test: Fail # Issue 6422 25 constructor6_test: Fail # Issue 6422
24 26
(...skipping 14 matching lines...) Expand all
39 deferred_redirecting_factory_test: Fail # Issue 23408 41 deferred_redirecting_factory_test: Fail # Issue 23408
40 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 42 redirecting_constructor_initializer_test: RuntimeError # Issue 23488
41 43
42 # Non-contractive types are not supported in the vm. 44 # Non-contractive types are not supported in the vm.
43 cyclic_type_test/02: Fail, OK 45 cyclic_type_test/02: Fail, OK
44 cyclic_type_test/04: Fail, OK 46 cyclic_type_test/04: Fail, OK
45 cyclic_type2_test: Fail, OK 47 cyclic_type2_test: Fail, OK
46 least_upper_bound_expansive_test/*: Fail, OK 48 least_upper_bound_expansive_test/*: Fail, OK
47 49
48 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs. 50 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs.
49 async_star_cancel_while_paused_test: RuntimeError
50 51
51 # Fails because `as T` is an error rather than being treated like `as dynamic`. 52 # Fails because `as T` is an error rather than being treated like `as dynamic`.
52 generic_methods_type_expression_test: RuntimeError # Issue 27460 53 generic_methods_type_expression_test: RuntimeError # Issue 27460
53 54
54 # Doesn't yet implement `covariant` keyword. 55 # Doesn't yet implement `covariant` keyword.
55 covariant_test/none: CompileTimeError # Issue 28166 56 covariant_test/none: CompileTimeError # Issue 28166
56 covariant_override_test: CompileTimeError # Issue 28166 57 covariant_override_test: CompileTimeError # Issue 28166
57 58
58 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 59 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
59 # These generic functions tests pass for the wrong reason in checked mode, 60 # These generic functions tests pass for the wrong reason in checked mode,
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 331 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276
331 332
332 [$compiler == dart2analyzer] 333 [$compiler == dart2analyzer]
333 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. 334 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash.
334 config_import_corelib_test: StaticWarning, OK 335 config_import_corelib_test: StaticWarning, OK
335 336
336 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 337 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025
337 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 338 null_bottom_test/01: Pass, CompileTimeError # Issue 28025
338 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 339 null_bottom_test/02: Pass, CompileTimeError # Issue 28025
339 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 340 null_bottom_test/03: Pass, CompileTimeError # Issue 28025
OLDNEW
« no previous file with comments | « tests/co19/co19-kernel.status ('k') | tests/language/language_kernel.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698