| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 [ $browser ] | 214 [ $browser ] |
| 215 | 215 |
| 216 | 216 |
| 217 [ $arch == simarm ] | 217 [ $arch == simarm ] |
| 218 *: Skip | 218 *: Skip |
| 219 | 219 |
| 220 [ $arch == arm ] | 220 [ $arch == arm ] |
| 221 *: Skip | 221 *: Skip |
| 222 | 222 |
| 223 [ $compiler == dart2dart ] | 223 [ $compiler == dart2dart ] |
| 224 bad_constructor_test/04: Fail |
| 225 bad_constructor_test/05: Fail |
| 226 bad_constructor_test/06: Fail |
| 224 interface_negative_test: Fail | 227 interface_negative_test: Fail |
| 225 abstract_factory_constructor_test/00: Fail | 228 abstract_factory_constructor_test/00: Fail |
| 226 interface_test/00: Fail | 229 interface_test/00: Fail |
| 227 argument_definition_test/*: Skip # Not implemented. | 230 argument_definition_test/*: Skip # Not implemented. |
| 228 argument_definition2_test: Skip # Not implemented. Fails in minified tests. | 231 argument_definition2_test: Skip # Not implemented. Fails in minified tests. |
| 229 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM | 232 call_constructor_on_unresolvable_class_test/01: Fail # generates 'new Unresolved
()' which fails on the VM |
| 230 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM | 233 call_constructor_on_unresolvable_class_test/02: Fail # generates 'new Unresolved
()' which fails on the VM |
| 231 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM | 234 call_constructor_on_unresolvable_class_test/03: Fail # generates 'new Unresolved
()' which fails on the VM |
| 232 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM | 235 call_constructor_on_unresolvable_class_test/07: Fail # generates 'new Unresolved
()' which fails on the VM |
| 233 call_nonexistent_constructor_test: Fail # Issue 1031 | 236 call_nonexistent_constructor_test: Fail # Issue 1031 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 disable_privacy_test: Fail, Ok | 337 disable_privacy_test: Fail, Ok |
| 335 # This test hard codes name of file being run and precise position. | 338 # This test hard codes name of file being run and precise position. |
| 336 generic_test: Fail, Ok | 339 generic_test: Fail, Ok |
| 337 # Minified mode failures. | 340 # Minified mode failures. |
| 338 # TODO(antonm): proper support in test framework. | 341 # TODO(antonm): proper support in test framework. |
| 339 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 342 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 340 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 343 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 341 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 344 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 342 | 345 |
| 343 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 346 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |