| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 59 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| 60 | 60 |
| 61 # DartC specific tests that should not be run by the VM | 61 # DartC specific tests that should not be run by the VM |
| 62 *dartc_test: Skip | 62 *dartc_test: Skip |
| 63 *dartc_negative_test: Skip | 63 *dartc_negative_test: Skip |
| 64 | 64 |
| 65 [ $compiler == none && $mode == debug ] | 65 [ $compiler == none && $mode == debug ] |
| 66 gc_test: Skip # Takes too long. | 66 gc_test: Skip # Takes too long. |
| 67 | 67 |
| 68 [ $compiler == dartc ] | 68 [ $compiler == dartc ] |
| 69 |
| 70 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy |
| 69 application_negative_test: Fail # Runtime only test, rewrite as multitest | 71 application_negative_test: Fail # Runtime only test, rewrite as multitest |
| 70 argument_definition_test/*: Skip # Not implemented. | 72 argument_definition_test/*: Skip # Not implemented. |
| 71 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest | 73 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest |
| 72 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest | 74 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest |
| 73 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest | 75 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest |
| 74 call_operator_test: Pass # Issue 1355 | 76 call_operator_test: Pass # Issue 1355 |
| 75 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason | 77 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason |
| 76 char_escape_test: Pass # Issue 1654 | 78 char_escape_test: Pass # Issue 1654 |
| 77 class_literal_test/01 : Fail # language change 3368 | 79 class_literal_test/01 : Fail # language change 3368 |
| 78 class_literal_test/04 : Fail # language change 1031 | 80 class_literal_test/04 : Fail # language change 1031 |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 disable_privacy_test: Fail, Ok | 291 disable_privacy_test: Fail, Ok |
| 290 # This test hard codes name of file being run and precise position. | 292 # This test hard codes name of file being run and precise position. |
| 291 generic_test: Fail, Ok | 293 generic_test: Fail, Ok |
| 292 # Minified mode failures. | 294 # Minified mode failures. |
| 293 # TODO(antonm): proper support in test framework. | 295 # TODO(antonm): proper support in test framework. |
| 294 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 296 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 295 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 297 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 296 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 298 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 297 | 299 |
| 298 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 300 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |