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

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

Issue 2608373002: Move Null type to the Bottom in the VM (fixes #28025). (Closed)
Patch Set: work in progress 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
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 # Tests that use the name#field tear off syntax which has been deprecated. 9 # Tests that use the name#field tear off syntax which has been deprecated.
14 tearoff_basic_test: CompileTimeError 10 tearoff_basic_test: CompileTimeError
15 tearoff_constructor_basic_test: CompileTimeError 11 tearoff_constructor_basic_test: CompileTimeError
16 # Other issues: 12 # Other issues:
17 generic_methods_type_expression_test: RuntimeError # Issue 25869 13 generic_methods_type_expression_test: RuntimeError # Issue 25869
18 null_is_bottom_test/05: RuntimeError # Issue 28025
19 null_is_bottom_test/07: RuntimeError # Issue 28025
20 null_is_bottom_test/20: RuntimeError # Issue 28025
21 null_is_bottom_test/25: RuntimeError # Issue 28025
22 null_is_bottom_test/27: RuntimeError # Issue 28025
23 null_is_bottom_test/32: RuntimeError # Issue 28025
24 null_is_bottom_test/37: RuntimeError # Issue 28025
25 null_is_bottom_test/39: RuntimeError # Issue 28025
26 14
27 # This is OK for now, but we may want to change the semantics to match the test. 15 # This is OK for now, but we may want to change the semantics to match the test.
28 async_star_pause_test: Fail, OK 16 async_star_pause_test: Fail, OK
29 17
30 # These tests are skipped in the VM because it has "--supermixin" 18 # These tests are skipped in the VM because it has "--supermixin"
31 # functionality enabled unconditionally. The tests should be removed 19 # functionality enabled unconditionally. The tests should be removed
32 # once the same is true for analyzer (#24478) and dart2js (#23773) 20 # once the same is true for analyzer (#24478) and dart2js (#23773)
33 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 21 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773
34 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 22 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773
35 23
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 56
69 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 57 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
70 # These generic functions tests pass for the wrong reason in checked mode, 58 # These generic functions tests pass for the wrong reason in checked mode,
71 # because the parsed type parameters are mapped to dynamic type. 59 # because the parsed type parameters are mapped to dynamic type.
72 generic_methods_function_type_test: Pass # Issue 25869 60 generic_methods_function_type_test: Pass # Issue 25869
73 generic_methods_test: Pass # Issue 25869 61 generic_methods_test: Pass # Issue 25869
74 generic_methods_new_test: Pass # Issue 25869 62 generic_methods_new_test: Pass # Issue 25869
75 generic_local_functions_test: Pass # Issue 25869 63 generic_local_functions_test: Pass # Issue 25869
76 generic_functions_test: Pass # Issue 25869 64 generic_functions_test: Pass # Issue 25869
77 generic_methods_generic_function_parameter_test: Pass # Issue 25869 65 generic_methods_generic_function_parameter_test: Pass # Issue 25869
78 null_is_bottom_test/03: RuntimeError # Issue 28025
79 null_is_bottom_test/18: RuntimeError # Issue 28025
80 null_is_bottom_test/23: RuntimeError # Issue 28025
81 null_is_bottom_test/30: RuntimeError # Issue 28025
82 null_is_bottom_test/35: RuntimeError # Issue 28025
83 66
84 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ] 67 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ]
85
86 class_keyword_test/02: MissingCompileTimeError # Issue 13627 68 class_keyword_test/02: MissingCompileTimeError # Issue 13627
87 unicode_bom_test: Fail # Issue 16067 69 unicode_bom_test: Fail # Issue 16067
88 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. 70 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint.
89 try_catch_optimized1_test: Skip # Srdjan investigating 71 try_catch_optimized1_test: Skip # Srdjan investigating
90 72
91 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 73 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
92 type_variable_bounds4_test/01: Fail # Issue 14006 74 type_variable_bounds4_test/01: Fail # Issue 14006
93 75
94 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($ runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime == dartium) ] 76 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($ runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime == dartium) ]
95 dynamic_prefix_core_test/none: Fail # Issue 12478 77 dynamic_prefix_core_test/none: Fail # Issue 12478
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 325
344 [$compiler == dart2analyzer] 326 [$compiler == dart2analyzer]
345 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. 327 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash.
346 config_import_corelib_test: StaticWarning, OK 328 config_import_corelib_test: StaticWarning, OK
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
OLDNEW
« runtime/vm/flow_graph_compiler_mips.cc ('K') | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698