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

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

Issue 2597943002: Revert "Runtime support for Null as any in dart2js". (Closed)
Patch Set: Created 4 years 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 | « sdk/lib/_internal/js_runtime/lib/js_rti.dart ('k') | tests/language/null_is_bottom_test.dart » ('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 == precompiler || $compiler == app_jit ] 8 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ]
9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest igating 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest igating
10 generic_methods_type_expression_test: RuntimeError # Issue 25869 10 generic_methods_type_expression_test: RuntimeError # Issue 25869
11 null_is_bottom_test/05: RuntimeError # Issue 28025
12 null_is_bottom_test/07: RuntimeError # Issue 28025
13 null_is_bottom_test/20: RuntimeError # Issue 28025
14 null_is_bottom_test/22: RuntimeError # Issue 28025
15 null_is_bottom_test/25: RuntimeError # Issue 28025
16 null_is_bottom_test/27: RuntimeError # Issue 28025
17 null_is_bottom_test/32: RuntimeError # Issue 28025
18 null_is_bottom_test/34: RuntimeError # Issue 28025
19 null_is_bottom_test/37: RuntimeError # Issue 28025
20 null_is_bottom_test/39: RuntimeError # Issue 28025
21 11
22 # 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.
23 async_star_pause_test: Fail, OK 13 async_star_pause_test: Fail, OK
24 14
25 # These tests are skipped in the VM because it has "--supermixin" 15 # These tests are skipped in the VM because it has "--supermixin"
26 # functionality enabled unconditionally. The tests should be removed 16 # functionality enabled unconditionally. The tests should be removed
27 # once the same is true for analyzer (#24478) and dart2js (#23773) 17 # once the same is true for analyzer (#24478) and dart2js (#23773)
28 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 18 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773
29 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 19 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773
30 20
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 53
64 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 54 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
65 # 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,
66 # because the parsed type parameters are mapped to dynamic type. 56 # because the parsed type parameters are mapped to dynamic type.
67 generic_methods_function_type_test: Pass # Issue 25869 57 generic_methods_function_type_test: Pass # Issue 25869
68 generic_methods_test: Pass # Issue 25869 58 generic_methods_test: Pass # Issue 25869
69 generic_methods_new_test: Pass # Issue 25869 59 generic_methods_new_test: Pass # Issue 25869
70 generic_local_functions_test: Pass # Issue 25869 60 generic_local_functions_test: Pass # Issue 25869
71 generic_functions_test: Pass # Issue 25869 61 generic_functions_test: Pass # Issue 25869
72 generic_methods_generic_function_parameter_test: Pass # Issue 25869 62 generic_methods_generic_function_parameter_test: Pass # Issue 25869
73 null_is_bottom_test/03: RuntimeError # Issue 28025
74 null_is_bottom_test/18: RuntimeError # Issue 28025
75 null_is_bottom_test/23: RuntimeError # Issue 28025
76 null_is_bottom_test/30: RuntimeError # Issue 28025
77 null_is_bottom_test/35: RuntimeError # Issue 28025
78 63
79 [ ($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) ]
80 65
81 class_keyword_test/02: MissingCompileTimeError # Issue 13627 66 class_keyword_test/02: MissingCompileTimeError # Issue 13627
82 unicode_bom_test: Fail # Issue 16067 67 unicode_bom_test: Fail # Issue 16067
83 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. 68 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint.
84 try_catch_optimized1_test: Skip # Srdjan investigating 69 try_catch_optimized1_test: Skip # Srdjan investigating
85 70
86 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 71 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
87 type_variable_bounds4_test/01: Fail # Issue 14006 72 type_variable_bounds4_test/01: Fail # Issue 14006
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 # The VM doesn't enforce that potentially const expressions are actually 316 # The VM doesn't enforce that potentially const expressions are actually
332 # const expressions when the constructor is called with `const`. 317 # const expressions when the constructor is called with `const`.
333 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. 318 assert_initializer_test/4*: MissingCompileTimeError # Issue 392.
334 319
335 [$runtime == vm && $compiler == none] 320 [$runtime == vm && $compiler == none]
336 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 321 duplicate_part_test/01: MissingCompileTimeError # Issue 27516
337 322
338 [$compiler == dart2analyzer] 323 [$compiler == dart2analyzer]
339 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. 324 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash.
340 config_import_corelib_test: StaticWarning, OK 325 config_import_corelib_test: StaticWarning, OK
OLDNEW
« no previous file with comments | « sdk/lib/_internal/js_runtime/lib/js_rti.dart ('k') | tests/language/null_is_bottom_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698