| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 library_prefixes_test: Fail # other is not a type | 490 library_prefixes_test: Fail # other is not a type |
| 491 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). | 491 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). |
| 492 many_generic_instanceof_test: Fail # cannot resolve type T | 492 many_generic_instanceof_test: Fail # cannot resolve type T |
| 493 method_binding_test: Fail # internal error: super property read not implemented. | 493 method_binding_test: Fail # internal error: super property read not implemented. |
| 494 method_name_test: Fail # Parsing of pseudo keywords. | 494 method_name_test: Fail # Parsing of pseudo keywords. |
| 495 method_override_test: Fail # cannot resolve type GetKeysFunctionType | 495 method_override_test: Fail # cannot resolve type GetKeysFunctionType |
| 496 named_parameters2_test: Fail # Unimplemented non-matching static call | 496 named_parameters2_test: Fail # Unimplemented non-matching static call |
| 497 named_parameters3_test: Fail # Unimplemented non-matching static call | 497 named_parameters3_test: Fail # Unimplemented non-matching static call |
| 498 named_parameters4_test: Fail # Unimplemented non-matching static call | 498 named_parameters4_test: Fail # Unimplemented non-matching static call |
| 499 naming_test: Fail # Broken because operator negate is not accessible as if it wa
s a method. | 499 naming_test: Fail # Broken because operator negate is not accessible as if it wa
s a method. |
| 500 operator6_test: Fail # Constant folding of bit-operations does not agree with ru
ntime behavior. Issue 2887. |
| 500 parameter_initializer_test: Fail # internal error: super property read not imple
mented | 501 parameter_initializer_test: Fail # internal error: super property read not imple
mented |
| 501 pseudo_kw_test: Fail # Unexpected token '(' | 502 pseudo_kw_test: Fail # Unexpected token '(' |
| 502 super_field_access_test: Fail # internal error: super property read not implemen
ted | 503 super_field_access_test: Fail # internal error: super property read not implemen
ted |
| 503 super_field_test: Fail # internal error: super property read not implemented | 504 super_field_test: Fail # internal error: super property read not implemented |
| 504 super_implicit_closure_test: Fail # internal error: super property read not impl
emented | 505 super_implicit_closure_test: Fail # internal error: super property read not impl
emented |
| 505 super_operator_test: Fail # internal error: super property store not implemented | 506 super_operator_test: Fail # internal error: super property store not implemented |
| 506 super_setter_test: Fail # internal error: super property read not implemented | 507 super_setter_test: Fail # internal error: super property read not implemented |
| 507 switch_label_test: Fail # error: target of continue is not a loop or switch case | 508 switch_label_test: Fail # error: target of continue is not a loop or switch case |
| 508 | 509 |
| 509 | 510 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 | 657 |
| 657 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. | 658 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. |
| 658 | 659 |
| 659 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". | 660 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". |
| 660 | 661 |
| 661 [ $compiler == dart2js && $mode == release ] | 662 [ $compiler == dart2js && $mode == release ] |
| 662 assign_top_method_negative_test: Crash | 663 assign_top_method_negative_test: Crash |
| 663 | 664 |
| 664 [ $compiler == dart2js && $runtime == none ] | 665 [ $compiler == dart2js && $runtime == none ] |
| 665 *: Fail, Pass # TODO(ahe): Triage these tests. | 666 *: Fail, Pass # TODO(ahe): Triage these tests. |
| OLD | NEW |