| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 *: Skip | 192 *: Skip |
| 193 | 193 |
| 194 [ $arch == arm ] | 194 [ $arch == arm ] |
| 195 *: Skip | 195 *: Skip |
| 196 | 196 |
| 197 [ $compiler == dart2dart ] | 197 [ $compiler == dart2dart ] |
| 198 interface_negative_test: Fail | 198 interface_negative_test: Fail |
| 199 abstract_factory_constructor_test/00: Fail | 199 abstract_factory_constructor_test/00: Fail |
| 200 interface_test/00: Fail | 200 interface_test/00: Fail |
| 201 argument_definition_test/*: Skip # Not implemented. | 201 argument_definition_test/*: Skip # Not implemented. |
| 202 argument_definition2_test: Skip # Not implemented. Fails in minified tests. |
| 202 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM | 203 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM |
| 203 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM | 204 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM |
| 204 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM | 205 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM |
| 205 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM | 206 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM |
| 206 call_nonexistent_constructor_test: Fail # Issue 1031 | 207 call_nonexistent_constructor_test: Fail # Issue 1031 |
| 207 const_var_test: Fail # Map literals take 2 type arguments. | 208 const_var_test: Fail # Map literals take 2 type arguments. |
| 208 map_literal3_test: Fail # Map literals take 2 type arguments. | 209 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 209 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 210 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 210 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 211 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 211 field6_negative_test: Fail, OK # Bad test: assumes eager loading. | 212 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 disable_privacy_test: Fail, Ok | 303 disable_privacy_test: Fail, Ok |
| 303 # This test hard codes name of file being run and precise position. | 304 # This test hard codes name of file being run and precise position. |
| 304 generic_test: Fail, Ok | 305 generic_test: Fail, Ok |
| 305 # Minified mode failures. | 306 # Minified mode failures. |
| 306 # TODO(antonm): proper support in test framework. | 307 # TODO(antonm): proper support in test framework. |
| 307 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 308 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 308 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 309 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 309 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 310 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 310 | 311 |
| 311 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 312 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |