| 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 [ $compiler == none ] | 8 [ $compiler == none ] |
| 9 built_in_identifier_prefix_test: Fail # Issue 6970 | 9 built_in_identifier_prefix_test: Fail # Issue 6970 |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 if_null_evaluation_order_test: Fail | 22 if_null_evaluation_order_test: Fail |
| 23 if_null_precedence_test: Fail | 23 if_null_precedence_test: Fail |
| 24 if_null_behavior_test: Fail | 24 if_null_behavior_test: Fail |
| 25 if_null_assignment_behavior_test: Fail, Pass | 25 if_null_assignment_behavior_test: Fail, Pass |
| 26 if_null_assignment_static_test: Fail | 26 if_null_assignment_static_test: Fail |
| 27 conditional_property_assignment_test: Fail, Pass | 27 conditional_property_assignment_test: Fail, Pass |
| 28 conditional_property_access_test: Fail, Pass | 28 conditional_property_access_test: Fail, Pass |
| 29 conditional_method_invocation_test: Fail, Pass | 29 conditional_method_invocation_test: Fail, Pass |
| 30 this_conditional_operator_test/none: Fail | 30 this_conditional_operator_test/none: Fail |
| 31 | 31 |
| 32 deferred_redirecting_factory_test: Fail # Issue 23408 |
| 33 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 |
| 34 |
| 35 [ $compiler == none && $runtime != dartium ] |
| 32 prefix_identifier_reference_test/01: MissingCompileTimeError # Issue 23612 | 36 prefix_identifier_reference_test/01: MissingCompileTimeError # Issue 23612 |
| 33 prefix_identifier_reference_test/02: MissingCompileTimeError # Issue 23612 | 37 prefix_identifier_reference_test/02: MissingCompileTimeError # Issue 23612 |
| 34 prefix_identifier_reference_test/03: MissingCompileTimeError # Issue 23612 | 38 prefix_identifier_reference_test/03: MissingCompileTimeError # Issue 23612 |
| 35 prefix_identifier_reference_test/04: MissingCompileTimeError # Issue 23612 | 39 prefix_identifier_reference_test/04: MissingCompileTimeError # Issue 23612 |
| 36 prefix_identifier_reference_test/05: MissingCompileTimeError # Issue 23612 | 40 prefix_identifier_reference_test/05: MissingCompileTimeError # Issue 23612 |
| 37 | 41 |
| 38 deferred_redirecting_factory_test: Fail # Issue 23408 | |
| 39 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 | |
| 40 | |
| 41 [ $compiler == none ] | 42 [ $compiler == none ] |
| 42 # Non-contractive types are not supported in the vm. | 43 # Non-contractive types are not supported in the vm. |
| 43 cyclic_type_test/02: Fail, OK | 44 cyclic_type_test/02: Fail, OK |
| 44 cyclic_type_test/04: Fail, OK | 45 cyclic_type_test/04: Fail, OK |
| 45 cyclic_type2_test: Fail, OK | 46 cyclic_type2_test: Fail, OK |
| 46 least_upper_bound_expansive_test/*: Fail, OK | 47 least_upper_bound_expansive_test/*: Fail, OK |
| 47 | 48 |
| 48 async_star_test/01: CompileTimeError, RuntimeError # drt only runtime-errs. | 49 async_star_test/01: CompileTimeError, RuntimeError # drt only runtime-errs. |
| 49 async_star_test/02: RuntimeError | 50 async_star_test/02: RuntimeError |
| 50 async_star_test/05: Timeout, RuntimeError | 51 async_star_test/05: Timeout, RuntimeError |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 large_class_declaration_test: SkipSlow # Times out. Issue 20352 | 103 large_class_declaration_test: SkipSlow # Times out. Issue 20352 |
| 103 | 104 |
| 104 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co
ntentShellOnAndroid) && $mode == debug ] | 105 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co
ntentShellOnAndroid) && $mode == debug ] |
| 105 large_class_declaration_test: SkipSlow # Times out. Issue 20352 | 106 large_class_declaration_test: SkipSlow # Times out. Issue 20352 |
| 106 | 107 |
| 107 [ $compiler == none && $runtime == ContentShellOnAndroid ] | 108 [ $compiler == none && $runtime == ContentShellOnAndroid ] |
| 108 gc_test: SkipSlow # Times out flakily. Issue 20956 | 109 gc_test: SkipSlow # Times out flakily. Issue 20956 |
| 109 | 110 |
| 110 [ $compiler == none && $runtime == vm && ( $arch == simarm || $arch == arm || $a
rch == simarmv5te || $arch == armv5te || $arch == simarm64 || $arch == arm64 ||
$arch == simmips || $arch == mips) ] | 111 [ $compiler == none && $runtime == vm && ( $arch == simarm || $arch == arm || $a
rch == simarmv5te || $arch == armv5te || $arch == simarm64 || $arch == arm64 ||
$arch == simmips || $arch == mips) ] |
| 111 vm/load_to_load_unaligned_forwarding_vm_test: Pass, Crash # Unaligned offset. Is
sue 22151 | 112 vm/load_to_load_unaligned_forwarding_vm_test: Pass, Crash # Unaligned offset. Is
sue 22151 |
| OLD | NEW |