| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 [ $browser ] | 150 [ $browser ] |
| 151 | 151 |
| 152 | 152 |
| 153 [ $arch == simarm ] | 153 [ $arch == simarm ] |
| 154 *: Skip | 154 *: Skip |
| 155 | 155 |
| 156 [ $arch == arm ] | 156 [ $arch == arm ] |
| 157 *: Skip | 157 *: Skip |
| 158 | 158 |
| 159 [ $compiler == dart2dart ] | 159 [ $compiler == dart2dart ] |
| 160 implicit_this_test/03: Fail # TODO(ahe): Handle abstract getters. | |
| 161 implicit_this_test/04: Fail # TODO(ahe): Handle abstract getters. | |
| 162 property_field_override_test: Fail # TODO(ahe): Handle abstract getters. | |
| 163 | |
| 164 call_nonexistent_constructor_test: Fail # Issue 1031 | 160 call_nonexistent_constructor_test: Fail # Issue 1031 |
| 165 const_var_test: Fail # Map literals take 2 type arguments. | 161 const_var_test: Fail # Map literals take 2 type arguments. |
| 166 map_literal3_test: Fail # Map literals take 2 type arguments. | 162 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 167 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 163 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 168 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 164 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 169 field6_negative_test: Fail, OK # Bad test: assumes eager loading. | 165 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 170 field7_negative_test: Fail, OK # Bad test: assumes eager loading. | 166 field7_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 171 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 167 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 172 # Common problems with dart2js. In illegal family, invalid | 168 # Common problems with dart2js. In illegal family, invalid |
| 173 # declarations are simply not parsed. In pseudo kw dart2js | 169 # declarations are simply not parsed. In pseudo kw dart2js |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 field_override_test/02: Fail | 248 field_override_test/02: Fail |
| 253 field_override_test/none: Fail | 249 field_override_test/none: Fail |
| 254 gc_test: Fail | 250 gc_test: Fail |
| 255 super_closure_test: Fail | 251 super_closure_test: Fail |
| 256 super_field_access_test: Fail | 252 super_field_access_test: Fail |
| 257 super_first_constructor_test: Fail | 253 super_first_constructor_test: Fail |
| 258 # VM specific tests. | 254 # VM specific tests. |
| 259 disable_privacy_test: Fail, Ok | 255 disable_privacy_test: Fail, Ok |
| 260 # This test hard codes name of file being run and precise position. | 256 # This test hard codes name of file being run and precise position. |
| 261 generic_test: Fail, Ok | 257 generic_test: Fail, Ok |
| OLD | NEW |