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

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

Issue 2587343006: Runtime support for Null as any in dart2js (Closed)
Patch Set: Update tests. 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
11 21
12 # This is OK for now, but we may want to change the semantics to match the test. 22 # This is OK for now, but we may want to change the semantics to match the test.
13 async_star_pause_test: Fail, OK 23 async_star_pause_test: Fail, OK
14 24
15 # These tests are skipped in the VM because it has "--supermixin" 25 # These tests are skipped in the VM because it has "--supermixin"
16 # functionality enabled unconditionally. The tests should be removed 26 # functionality enabled unconditionally. The tests should be removed
17 # once the same is true for analyzer (#24478) and dart2js (#23773) 27 # once the same is true for analyzer (#24478) and dart2js (#23773)
18 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 28 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773
19 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 29 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773
20 30
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 63
54 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 64 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
55 # These generic functions tests pass for the wrong reason in checked mode, 65 # These generic functions tests pass for the wrong reason in checked mode,
56 # because the parsed type parameters are mapped to dynamic type. 66 # because the parsed type parameters are mapped to dynamic type.
57 generic_methods_function_type_test: Pass # Issue 25869 67 generic_methods_function_type_test: Pass # Issue 25869
58 generic_methods_test: Pass # Issue 25869 68 generic_methods_test: Pass # Issue 25869
59 generic_methods_new_test: Pass # Issue 25869 69 generic_methods_new_test: Pass # Issue 25869
60 generic_local_functions_test: Pass # Issue 25869 70 generic_local_functions_test: Pass # Issue 25869
61 generic_functions_test: Pass # Issue 25869 71 generic_functions_test: Pass # Issue 25869
62 generic_methods_generic_function_parameter_test: Pass # Issue 25869 72 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
63 78
64 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ] 79 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ]
65 80
66 class_keyword_test/02: MissingCompileTimeError # Issue 13627 81 class_keyword_test/02: MissingCompileTimeError # Issue 13627
67 unicode_bom_test: Fail # Issue 16067 82 unicode_bom_test: Fail # Issue 16067
68 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. 83 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint.
69 try_catch_optimized1_test: Skip # Srdjan investigating 84 try_catch_optimized1_test: Skip # Srdjan investigating
70 85
71 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 86 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
72 type_variable_bounds4_test/01: Fail # Issue 14006 87 type_variable_bounds4_test/01: Fail # Issue 14006
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 # The VM doesn't enforce that potentially const expressions are actually 331 # The VM doesn't enforce that potentially const expressions are actually
317 # const expressions when the constructor is called with `const`. 332 # const expressions when the constructor is called with `const`.
318 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. 333 assert_initializer_test/4*: MissingCompileTimeError # Issue 392.
319 334
320 [$runtime == vm && $compiler == none] 335 [$runtime == vm && $compiler == none]
321 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 336 duplicate_part_test/01: MissingCompileTimeError # Issue 27516
322 337
323 [$compiler == dart2analyzer] 338 [$compiler == dart2analyzer]
324 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. 339 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash.
325 config_import_corelib_test: StaticWarning, OK 340 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