| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 69 |
| 70 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy | 70 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy |
| 71 application_negative_test: Fail # Runtime only test, rewrite as multitest | 71 application_negative_test: Fail # Runtime only test, rewrite as multitest |
| 72 interface_negative_test: Fail # instantiation of abstract class |
| 72 argument_definition_test/*: Skip # Not implemented. | 73 argument_definition_test/*: Skip # Not implemented. |
| 73 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest | 74 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest |
| 74 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest | 75 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest |
| 75 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest | 76 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest |
| 76 call_operator_test: Pass # Issue 1355 | 77 call_operator_test: Pass # Issue 1355 |
| 77 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason | 78 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason |
| 78 char_escape_test: Pass # Issue 1654 | 79 char_escape_test: Pass # Issue 1654 |
| 79 class_literal_test/01 : Fail # language change 3368 | 80 class_literal_test/01 : Fail # language change 3368 |
| 80 class_literal_test/04 : Fail # language change 1031 | 81 class_literal_test/04 : Fail # language change 1031 |
| 81 class_literal_test/05 : Fail # language change 3368 | 82 class_literal_test/05 : Fail # language change 3368 |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 disable_privacy_test: Fail, Ok | 292 disable_privacy_test: Fail, Ok |
| 292 # This test hard codes name of file being run and precise position. | 293 # This test hard codes name of file being run and precise position. |
| 293 generic_test: Fail, Ok | 294 generic_test: Fail, Ok |
| 294 # Minified mode failures. | 295 # Minified mode failures. |
| 295 # TODO(antonm): proper support in test framework. | 296 # TODO(antonm): proper support in test framework. |
| 296 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 297 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 297 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 298 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 298 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 299 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 299 | 300 |
| 300 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 301 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |