| OLD | NEW |
| 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 [ $strong ] | 8 [ $strong ] |
| 9 *: SkipByDesign # tests/language_strong has the strong mode versions of these te
sts. | 9 *: SkipByDesign # tests/language_strong has the strong mode versions of these te
sts. |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 no_main_test/01: Skip | 52 no_main_test/01: Skip |
| 53 main_not_a_function_test/01: Skip | 53 main_not_a_function_test/01: Skip |
| 54 | 54 |
| 55 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | 55 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
| 56 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 56 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 57 multiline_strings_test: Fail # Issue 23020 | 57 multiline_strings_test: Fail # Issue 23020 |
| 58 | 58 |
| 59 deferred_redirecting_factory_test: Fail, Crash # Issue 23408 | 59 deferred_redirecting_factory_test: Fail, Crash # Issue 23408 |
| 60 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 | 60 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 |
| 61 | 61 |
| 62 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] | |
| 63 # These generic functions tests pass for the wrong reason in checked mode, | |
| 64 # because the parsed type parameters are mapped to dynamic type. | |
| 65 generic_functions_test: Pass # Issue 25869 | |
| 66 | |
| 67 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r
untime == vm || $runtime == dart_precompiled || $runtime == flutter) ] | 62 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r
untime == vm || $runtime == dart_precompiled || $runtime == flutter) ] |
| 68 unicode_bom_test: Fail # Issue 16067 | 63 unicode_bom_test: Fail # Issue 16067 |
| 69 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 64 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
| 70 | 65 |
| 71 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] | 66 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] |
| 72 type_variable_bounds4_test/01: Fail # Issue 14006 | 67 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 73 | 68 |
| 74 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r
untime == vm || $runtime == dart_precompiled || $runtime == flutter) ] | 69 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r
untime == vm || $runtime == dart_precompiled || $runtime == flutter) ] |
| 75 export_ambiguous_main_negative_test: Fail # Issue 14763 | 70 export_ambiguous_main_negative_test: Fail # Issue 14763 |
| 76 | 71 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 vm/causal_async_exception_stack2_test: RuntimeError | 235 vm/causal_async_exception_stack2_test: RuntimeError |
| 241 # TODO(zra): Investigate | 236 # TODO(zra): Investigate |
| 242 vm/math_vm_test: Crash | 237 vm/math_vm_test: Crash |
| 243 | 238 |
| 244 [$compiler == dart2analyzer] | 239 [$compiler == dart2analyzer] |
| 245 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 240 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 246 config_import_corelib_test: StaticWarning, OK | 241 config_import_corelib_test: StaticWarning, OK |
| 247 | 242 |
| 248 [ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && ($c
ompiler == none || $compiler == app_jit || $compiler == precompiler) ] | 243 [ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && ($c
ompiler == none || $compiler == app_jit || $compiler == precompiler) ] |
| 249 await_for_test: RuntimeError # issue 28974 | 244 await_for_test: RuntimeError # issue 28974 |
| 250 generalized_void_syntax_test: CompileTimeError # Issue #30176. | |
| 251 syntax_test/none: CompileTimeError # Issue #30176. | 245 syntax_test/none: CompileTimeError # Issue #30176. |
| 252 | 246 |
| 253 # flutter uses --error_on_bad_type, --error_on_bad_override | 247 # flutter uses --error_on_bad_type, --error_on_bad_override |
| 254 # and --await_is_keyword so # the following tests fail with | 248 # and --await_is_keyword so # the following tests fail with |
| 255 # a Compilation Error | 249 # a Compilation Error |
| 256 [ $runtime == flutter ] | 250 [ $runtime == flutter ] |
| 257 await_backwards_compatibility_test/none: CompileTimeError | 251 await_backwards_compatibility_test/none: CompileTimeError |
| 258 await_test: CompileTimeError | 252 await_test: CompileTimeError |
| 259 async_await_test: CompileTimeError | 253 async_await_test: CompileTimeError |
| 260 static_initializer_type_error_test: CompileTimeError | 254 static_initializer_type_error_test: CompileTimeError |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 malbounded_redirecting_factory2_test/none: CompileTimeError | 420 malbounded_redirecting_factory2_test/none: CompileTimeError |
| 427 malbounded_redirecting_factory2_test/01: CompileTimeError | 421 malbounded_redirecting_factory2_test/01: CompileTimeError |
| 428 malbounded_type_cast_test: CompileTimeError | 422 malbounded_type_cast_test: CompileTimeError |
| 429 type_parameter_test/none: CompileTimeError | 423 type_parameter_test/none: CompileTimeError |
| 430 list_literal_syntax_test/03: CompileTimeError | 424 list_literal_syntax_test/03: CompileTimeError |
| 431 list_literal_syntax_test/01: CompileTimeError | 425 list_literal_syntax_test/01: CompileTimeError |
| 432 list_literal_syntax_test/02: CompileTimeError | 426 list_literal_syntax_test/02: CompileTimeError |
| 433 vm/reflect_core_vm_test: CompileTimeError | 427 vm/reflect_core_vm_test: CompileTimeError |
| 434 vm/debug_break_enabled_vm_test/01: CompileTimeError | 428 vm/debug_break_enabled_vm_test/01: CompileTimeError |
| 435 vm/debug_break_enabled_vm_test/none: CompileTimeError | 429 vm/debug_break_enabled_vm_test/none: CompileTimeError |
| 436 generic_function_typedef2_test/04: CompileTimeError | |
| 437 const_types_test/01: CompileTimeError | 430 const_types_test/01: CompileTimeError |
| 438 const_types_test/02: CompileTimeError | 431 const_types_test/02: CompileTimeError |
| 439 const_types_test/03: CompileTimeError | 432 const_types_test/03: CompileTimeError |
| 440 const_types_test/04: CompileTimeError | 433 const_types_test/04: CompileTimeError |
| 441 const_types_test/05: CompileTimeError | 434 const_types_test/05: CompileTimeError |
| 442 const_types_test/06: CompileTimeError | 435 const_types_test/06: CompileTimeError |
| 443 const_types_test/13: CompileTimeError | 436 const_types_test/13: CompileTimeError |
| 444 const_types_test/35: CompileTimeError | 437 const_types_test/35: CompileTimeError |
| 445 const_types_test/40: CompileTimeError | 438 const_types_test/40: CompileTimeError |
| 446 regress_12561_test: CompileTimeError | 439 regress_12561_test: CompileTimeError |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 full_stacktrace1_test: Skip | 492 full_stacktrace1_test: Skip |
| 500 full_stacktrace2_test: Skip | 493 full_stacktrace2_test: Skip |
| 501 full_stacktrace3_test: Skip | 494 full_stacktrace3_test: Skip |
| 502 stacktrace_rethrow_error_test: Skip | 495 stacktrace_rethrow_error_test: Skip |
| 503 stacktrace_rethrow_nonerror_test: Skip | 496 stacktrace_rethrow_nonerror_test: Skip |
| 504 vm/no_such_args_error_message_vm_test: Skip | 497 vm/no_such_args_error_message_vm_test: Skip |
| 505 vm/no_such_method_error_message_callable_vm_test: Skip | 498 vm/no_such_method_error_message_callable_vm_test: Skip |
| 506 vm/no_such_method_error_message_vm_test: Skip | 499 vm/no_such_method_error_message_vm_test: Skip |
| 507 vm/regress_28325_test:Skip | 500 vm/regress_28325_test:Skip |
| 508 | 501 |
| OLD | NEW |