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

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

Issue 2608373002: Move Null type to the Bottom in the VM (fixes #28025). (Closed)
Patch Set: address comments and sync 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/corelib/corelib.status ('k') | no next file » | 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 ]
9 null_is_bottom_test/22: RuntimeError # Issue 28025
10 null_is_bottom_test/34: RuntimeError # Issue 28025
11
12 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] 8 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ]
13 # Other issues: 9 # Other issues:
14 generic_methods_type_expression_test: RuntimeError # Issue 25869 10 generic_methods_type_expression_test: RuntimeError # Issue 25869
15 null_is_bottom_test/05: RuntimeError # Issue 28025
16 null_is_bottom_test/07: RuntimeError # Issue 28025
17 null_is_bottom_test/20: RuntimeError # Issue 28025
18 null_is_bottom_test/25: RuntimeError # Issue 28025
19 null_is_bottom_test/27: RuntimeError # Issue 28025
20 null_is_bottom_test/32: RuntimeError # Issue 28025
21 null_is_bottom_test/37: RuntimeError # Issue 28025
22 null_is_bottom_test/39: RuntimeError # Issue 28025
23 11
24 # This is OK for now, but we may want to change the semantics to match the test. 12 # This is OK for now, but we may want to change the semantics to match the test.
25 async_star_pause_test: Fail, OK 13 async_star_pause_test: Fail, OK
26 14
27 # These tests are skipped in the VM because it has "--supermixin" 15 # These tests are skipped in the VM because it has "--supermixin"
28 # functionality enabled unconditionally. The tests should be removed 16 # functionality enabled unconditionally. The tests should be removed
29 # once the same is true for analyzer (#24478) and dart2js (#23773) 17 # once the same is true for analyzer (#24478) and dart2js (#23773)
30 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 18 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773
31 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 19 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773
32 20
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 53
66 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 54 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
67 # 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,
68 # because the parsed type parameters are mapped to dynamic type. 56 # because the parsed type parameters are mapped to dynamic type.
69 generic_methods_function_type_test: Pass # Issue 25869 57 generic_methods_function_type_test: Pass # Issue 25869
70 generic_methods_test: Pass # Issue 25869 58 generic_methods_test: Pass # Issue 25869
71 generic_methods_new_test: Pass # Issue 25869 59 generic_methods_new_test: Pass # Issue 25869
72 generic_local_functions_test: Pass # Issue 25869 60 generic_local_functions_test: Pass # Issue 25869
73 generic_functions_test: Pass # Issue 25869 61 generic_functions_test: Pass # Issue 25869
74 generic_methods_generic_function_parameter_test: Pass # Issue 25869 62 generic_methods_generic_function_parameter_test: Pass # Issue 25869
75 null_is_bottom_test/03: RuntimeError # Issue 28025
76 null_is_bottom_test/18: RuntimeError # Issue 28025
77 null_is_bottom_test/23: RuntimeError # Issue 28025
78 null_is_bottom_test/30: RuntimeError # Issue 28025
79 null_is_bottom_test/35: RuntimeError # Issue 28025
80 63
81 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ] 64 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ]
82
83 class_keyword_test/02: MissingCompileTimeError # Issue 13627 65 class_keyword_test/02: MissingCompileTimeError # Issue 13627
84 unicode_bom_test: Fail # Issue 16067 66 unicode_bom_test: Fail # Issue 16067
85 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. 67 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint.
86 try_catch_optimized1_test: Skip # Srdjan investigating 68 try_catch_optimized1_test: Skip # Srdjan investigating
87 69
88 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 70 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
89 type_variable_bounds4_test/01: Fail # Issue 14006 71 type_variable_bounds4_test/01: Fail # Issue 14006
90 72
91 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($ runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime == dartium) ] 73 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($ runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime == dartium) ]
92 dynamic_prefix_core_test/none: Fail # Issue 12478 74 dynamic_prefix_core_test/none: Fail # Issue 12478
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 326 null_bottom_test/01: Pass, CompileTimeError # Issue 28025
345 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 327 null_bottom_test/02: Pass, CompileTimeError # Issue 28025
346 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 328 null_bottom_test/03: Pass, CompileTimeError # Issue 28025
347 329
348 # Issue #28236 330 # Issue #28236
349 async_await_test: StaticWarning 331 async_await_test: StaticWarning
350 async_star_pause_test: StaticWarning 332 async_star_pause_test: StaticWarning
351 async_star_test: StaticWarning 333 async_star_test: StaticWarning
352 regress_18535_test: StaticWarning 334 regress_18535_test: StaticWarning
353 335
354 [ $runtime == dart_precompiled || $runtime == vm || $runtime == dartium]
355 null_bottom_test/none: RuntimeError # Issue 28025
356 null_bottom_test/01: RuntimeError # Issue 28025
357 null_bottom_test/02: RuntimeError # Issue 28025
OLDNEW
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698