| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 [ $browser ] | 172 [ $browser ] |
| 173 | 173 |
| 174 | 174 |
| 175 [ $arch == simarm ] | 175 [ $arch == simarm ] |
| 176 *: Skip | 176 *: Skip |
| 177 | 177 |
| 178 [ $arch == arm ] | 178 [ $arch == arm ] |
| 179 *: Skip | 179 *: Skip |
| 180 | 180 |
| 181 [ $compiler == dart2dart ] | 181 [ $compiler == dart2dart ] |
| 182 interface_negative_test: Fail | |
| 183 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM | 182 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM |
| 184 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM | 183 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM |
| 185 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM | 184 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM |
| 186 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM | 185 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM |
| 187 call_nonexistent_constructor_test: Fail # Issue 1031 | 186 call_nonexistent_constructor_test: Fail # Issue 1031 |
| 188 const_var_test: Fail # Map literals take 2 type arguments. | 187 const_var_test: Fail # Map literals take 2 type arguments. |
| 189 map_literal3_test: Fail # Map literals take 2 type arguments. | 188 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 190 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 189 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 191 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 190 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 192 field6_negative_test: Fail, OK # Bad test: assumes eager loading. | 191 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 214 # external keyword is not yet supported by dart2js/dart2dart. | 213 # external keyword is not yet supported by dart2js/dart2dart. |
| 215 external_test/*: Skip | 214 external_test/*: Skip |
| 216 # Call operator is not supported by DartVM (see suppression above.) | 215 # Call operator is not supported by DartVM (see suppression above.) |
| 217 call_operator_test: Fail | 216 call_operator_test: Fail |
| 218 # dart2js frontend doesn't even analyse problematic classes. | 217 # dart2js frontend doesn't even analyse problematic classes. |
| 219 class_extends_negative_test: Fail | 218 class_extends_negative_test: Fail |
| 220 duplicate_implements_test/01: Fail | 219 duplicate_implements_test/01: Fail |
| 221 duplicate_implements_test/02: Fail | 220 duplicate_implements_test/02: Fail |
| 222 duplicate_implements_test/03: Fail | 221 duplicate_implements_test/03: Fail |
| 223 duplicate_implements_test/04: Fail | 222 duplicate_implements_test/04: Fail |
| 223 empty_body_member_negative_test: Fail |
| 224 field2_negative_test: Fail | 224 field2_negative_test: Fail |
| 225 field4_negative_test: Fail | 225 field4_negative_test: Fail |
| 226 field5_negative_test: Fail | 226 field5_negative_test: Fail |
| 227 field6a_negative_test: Fail | 227 field6a_negative_test: Fail |
| 228 field7a_negative_test: Fail | 228 field7a_negative_test: Fail |
| 229 interface_factory_constructor_negative_test: Fail | 229 interface_factory_constructor_negative_test: Fail |
| 230 interface_static_method_negative_test: Fail | 230 interface_static_method_negative_test: Fail |
| 231 non_const_super_negative_test: Fail | 231 non_const_super_negative_test: Fail |
| 232 method_override2_test/00: Fail | 232 method_override2_test/00: Fail |
| 233 method_override2_test/02: Fail | 233 method_override2_test/02: Fail |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 super_first_constructor_test: Fail | 279 super_first_constructor_test: Fail |
| 280 # VM specific tests. | 280 # VM specific tests. |
| 281 disable_privacy_test: Fail, Ok | 281 disable_privacy_test: Fail, Ok |
| 282 # This test hard codes name of file being run and precise position. | 282 # This test hard codes name of file being run and precise position. |
| 283 generic_test: Fail, Ok | 283 generic_test: Fail, Ok |
| 284 # Minified mode failures. | 284 # Minified mode failures. |
| 285 # TODO(antonm): proper support in test framework. | 285 # TODO(antonm): proper support in test framework. |
| 286 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 286 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 287 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 287 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 288 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 288 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| OLD | NEW |