| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 | 178 |
| 179 [ $arch == simarm ] | 179 [ $arch == simarm ] |
| 180 *: Skip | 180 *: Skip |
| 181 | 181 |
| 182 [ $arch == arm ] | 182 [ $arch == arm ] |
| 183 *: Skip | 183 *: Skip |
| 184 | 184 |
| 185 [ $compiler == dart2dart ] | 185 [ $compiler == dart2dart ] |
| 186 interface_negative_test: Fail | 186 interface_negative_test: Fail |
| 187 abstract_factory_constructor_test/00: Fail |
| 188 interface_test/00: Fail |
| 187 argument_definition_test/*: Skip # Not implemented. | 189 argument_definition_test/*: Skip # Not implemented. |
| 188 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM | 190 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM |
| 189 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM | 191 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM |
| 190 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM | 192 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM |
| 191 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM | 193 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM |
| 192 call_nonexistent_constructor_test: Fail # Issue 1031 | 194 call_nonexistent_constructor_test: Fail # Issue 1031 |
| 193 const_var_test: Fail # Map literals take 2 type arguments. | 195 const_var_test: Fail # Map literals take 2 type arguments. |
| 194 map_literal3_test: Fail # Map literals take 2 type arguments. | 196 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 195 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 197 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 196 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 198 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 disable_privacy_test: Fail, Ok | 289 disable_privacy_test: Fail, Ok |
| 288 # This test hard codes name of file being run and precise position. | 290 # This test hard codes name of file being run and precise position. |
| 289 generic_test: Fail, Ok | 291 generic_test: Fail, Ok |
| 290 # Minified mode failures. | 292 # Minified mode failures. |
| 291 # TODO(antonm): proper support in test framework. | 293 # TODO(antonm): proper support in test framework. |
| 292 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 294 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 293 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 295 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 294 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 296 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 295 | 297 |
| 296 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 298 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |