| 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 # In order to maintain maximum test coverage for all builds, | 8 # In order to maintain maximum test coverage for all builds, |
| 9 # please use the following procedure to mark a test | 9 # please use the following procedure to mark a test |
| 10 # failed on architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 [ $browser ] | 136 [ $browser ] |
| 137 prefix_core_test: Fail # Issue 2264. | 137 prefix_core_test: Fail # Issue 2264. |
| 138 | 138 |
| 139 [ $arch == simarm ] | 139 [ $arch == simarm ] |
| 140 *: Skip | 140 *: Skip |
| 141 | 141 |
| 142 [ $arch == arm ] | 142 [ $arch == arm ] |
| 143 *: Skip | 143 *: Skip |
| 144 | 144 |
| 145 [ $compiler == dart2dart ] | 145 [ $compiler == dart2dart ] |
| 146 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 147 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 148 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 149 field7_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 150 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 146 # Tests that crash after reverting resolution of type variables in default claus
e. | 151 # Tests that crash after reverting resolution of type variables in default claus
e. |
| 147 # https://chromiumcodereview.appspot.com/10824062/ | 152 # https://chromiumcodereview.appspot.com/10824062/ |
| 148 default_factory2_test/01: Fail | 153 default_factory2_test/01: Fail |
| 149 default_factory3_test: Fail | 154 default_factory3_test: Fail |
| 150 function_type_alias6_test: Crash, Timeout | 155 function_type_alias6_test: Crash, Timeout |
| 151 type_variable_scope_test/00: Fail | 156 type_variable_scope_test/00: Fail |
| 152 type_variable_scope_test/01: Fail | 157 type_variable_scope_test/01: Fail |
| 153 type_variable_scope_test/02: Fail | 158 type_variable_scope_test/02: Fail |
| 154 type_variable_scope_test/03: Fail | 159 type_variable_scope_test/03: Fail |
| 155 type_variable_scope_test/04: Fail | 160 type_variable_scope_test/04: Fail |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 static_top_level_test/05: Fail | 305 static_top_level_test/05: Fail |
| 301 string_interpolation7_test: Fail | 306 string_interpolation7_test: Fail |
| 302 switch_label_test: Fail | 307 switch_label_test: Fail |
| 303 syntax_test/none: Fail | 308 syntax_test/none: Fail |
| 304 typed_message_test: Fail | 309 typed_message_test: Fail |
| 305 type_variable_bounds2_test/02: Fail | 310 type_variable_bounds2_test/02: Fail |
| 306 type_variable_bounds2_test/06: Fail | 311 type_variable_bounds2_test/06: Fail |
| 307 type_variable_bounds_test/02: Fail | 312 type_variable_bounds_test/02: Fail |
| 308 type_variable_bounds_test/04: Fail | 313 type_variable_bounds_test/04: Fail |
| 309 type_variable_bounds_test/05: Fail | 314 type_variable_bounds_test/05: Fail |
| OLD | NEW |