| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 [ $browser ] | 149 [ $browser ] |
| 150 prefix_core_test: Fail # Issue 2264. | 150 prefix_core_test: Fail # Issue 2264. |
| 151 | 151 |
| 152 [ $arch == simarm ] | 152 [ $arch == simarm ] |
| 153 *: Skip | 153 *: Skip |
| 154 | 154 |
| 155 [ $arch == arm ] | 155 [ $arch == arm ] |
| 156 *: Skip | 156 *: Skip |
| 157 | 157 |
| 158 [ $compiler == dart2dart ] | 158 [ $compiler == dart2dart ] |
| 159 const_var_test: Fail # Map literals take 2 type arguments. |
| 160 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 159 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 161 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 160 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 162 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 161 field6_negative_test: Fail, OK # Bad test: assumes eager loading. | 163 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 162 field7_negative_test: Fail, OK # Bad test: assumes eager loading. | 164 field7_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 163 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 165 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 164 # Common problems with dart2js. In illegal family, invalid | 166 # Common problems with dart2js. In illegal family, invalid |
| 165 # declarations are simply not parsed. In pseudo kw dart2js | 167 # declarations are simply not parsed. In pseudo kw dart2js |
| 166 # chokes on things like typedef(x) => "typedef $x" and alike. | 168 # chokes on things like typedef(x) => "typedef $x" and alike. |
| 167 abstract_syntax_test/01: Fail | 169 abstract_syntax_test/01: Fail |
| 168 abstract_syntax_test/02: Fail | 170 abstract_syntax_test/02: Fail |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 prefix_core_test: Fail | 250 prefix_core_test: Fail |
| 249 super_closure_test: Fail | 251 super_closure_test: Fail |
| 250 super_field_access_test: Fail | 252 super_field_access_test: Fail |
| 251 super_first_constructor_test: Fail | 253 super_first_constructor_test: Fail |
| 252 # VM specific tests. | 254 # VM specific tests. |
| 253 disable_privacy_test: Fail, Ok | 255 disable_privacy_test: Fail, Ok |
| 254 # 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. |
| 255 generic_test: Fail, Ok | 257 generic_test: Fail, Ok |
| 256 top_level_getter_arrow_syntax_test: Fail # TODO(ahe): I'm working on this. | 258 top_level_getter_arrow_syntax_test: Fail # TODO(ahe): I'm working on this. |
| 257 getters_setters_test: Fail # TODO(ahe): I'm working on this. | 259 getters_setters_test: Fail # TODO(ahe): I'm working on this. |
| OLD | NEW |