| 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 # These test entries will be valid for vm/dartium (with and without kernel). | 8 # These test entries will be valid for vm/dartium (with and without kernel). |
| 9 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] | 9 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] |
| 10 async_star_cancel_while_paused_test: RuntimeError | 10 async_star_cancel_while_paused_test: RuntimeError |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 enum_test: RuntimeError # Issue 28341 | 46 enum_test: RuntimeError # Issue 28341 |
| 47 | 47 |
| 48 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 48 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 49 multiline_strings_test: Fail # Issue 23020 | 49 multiline_strings_test: Fail # Issue 23020 |
| 50 | 50 |
| 51 deferred_redirecting_factory_test: Fail # Issue 23408 | 51 deferred_redirecting_factory_test: Fail # Issue 23408 |
| 52 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 | 52 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 |
| 53 | 53 |
| 54 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. | 54 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. |
| 55 | 55 |
| 56 generic_function_typedef_test: Fail # Issue 27966 | |
| 57 generic_function_typedef2_test/none: Fail # Issue 27966 | |
| 58 generic_function_typedef2_test/04: Fail # Issue 27966 | |
| 59 generalized_function_type_test: Fail # Issue 27966 | |
| 60 | |
| 61 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] | 56 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] |
| 62 # These generic functions tests pass for the wrong reason in checked mode, | 57 # These generic functions tests pass for the wrong reason in checked mode, |
| 63 # because the parsed type parameters are mapped to dynamic type. | 58 # because the parsed type parameters are mapped to dynamic type. |
| 64 generic_methods_function_type_test: Pass # Issue 25869 | 59 generic_methods_function_type_test: Pass # Issue 25869 |
| 65 generic_methods_test: Pass # Issue 25869 | 60 generic_methods_test: Pass # Issue 25869 |
| 66 generic_methods_new_test: Pass # Issue 25869 | 61 generic_methods_new_test: Pass # Issue 25869 |
| 67 generic_local_functions_test: Pass # Issue 25869 | 62 generic_local_functions_test: Pass # Issue 25869 |
| 68 generic_functions_test: Pass # Issue 25869 | 63 generic_functions_test: Pass # Issue 25869 |
| 69 generic_methods_generic_function_parameter_test: Pass # Issue 25869 | 64 generic_methods_generic_function_parameter_test: Pass # Issue 25869 |
| 70 | 65 |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 | 312 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 |
| 318 | 313 |
| 319 [$compiler == dart2analyzer] | 314 [$compiler == dart2analyzer] |
| 320 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 315 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 321 config_import_corelib_test: StaticWarning, OK | 316 config_import_corelib_test: StaticWarning, OK |
| 322 | 317 |
| 323 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 | 318 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 |
| 324 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 | 319 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 |
| 325 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 | 320 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 |
| 326 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 | 321 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 |
| OLD | NEW |