| 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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 # Common problems with dart2js. In illegal family, invalid | 422 # Common problems with dart2js. In illegal family, invalid |
| 423 # declarations are simply not parsed. In pseudo kw dart2js | 423 # declarations are simply not parsed. In pseudo kw dart2js |
| 424 # chokes on things like typedef(x) => "typedef $x" and alike. | 424 # chokes on things like typedef(x) => "typedef $x" and alike. |
| 425 abstract_syntax_test/01: Fail | 425 abstract_syntax_test/01: Fail |
| 426 abstract_syntax_test/02: Fail | 426 abstract_syntax_test/02: Fail |
| 427 pseudo_kw_illegal_test/14: Fail | 427 pseudo_kw_illegal_test/14: Fail |
| 428 pseudo_kw_test: Fail | 428 pseudo_kw_test: Fail |
| 429 # external keyword is not yet supported by dart2js/dart2dart. | 429 # external keyword is not yet supported by dart2js/dart2dart. |
| 430 external_test/*: Skip | 430 external_test/*: Skip |
| 431 lazy_static3_test: Fail, OK # Issue 3558 | 431 lazy_static3_test: Fail, OK # Issue 3558 |
| 432 # Call operator is not supported by DartVM (see suppression above.) | |
| 433 call_operator_test: Fail | |
| 434 # dart2js frontend doesn't even analyse problematic classes. | 432 # dart2js frontend doesn't even analyse problematic classes. |
| 435 duplicate_implements_test/01: Fail | 433 duplicate_implements_test/01: Fail |
| 436 duplicate_implements_test/02: Fail | 434 duplicate_implements_test/02: Fail |
| 437 duplicate_implements_test/03: Fail | 435 duplicate_implements_test/03: Fail |
| 438 duplicate_implements_test/04: Fail | 436 duplicate_implements_test/04: Fail |
| 439 field2_negative_test: Fail | 437 field2_negative_test: Fail |
| 440 field4_negative_test: Fail | 438 field4_negative_test: Fail |
| 441 field5_negative_test: Fail | 439 field5_negative_test: Fail |
| 442 field6a_negative_test: Fail | 440 field6a_negative_test: Fail |
| 443 interface_factory_constructor_negative_test: Fail | 441 interface_factory_constructor_negative_test: Fail |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 | 526 |
| 529 # This is a VM error when the compiled code is run. | 527 # This is a VM error when the compiled code is run. |
| 530 invocation_mirror_test: Fail # issue 3326. | 528 invocation_mirror_test: Fail # issue 3326. |
| 531 invocation_mirror_indirect_test: Fail # issue 3326. | 529 invocation_mirror_indirect_test: Fail # issue 3326. |
| 532 super_call4_test: Fail # issue 3326. | 530 super_call4_test: Fail # issue 3326. |
| 533 | 531 |
| 534 [ $compiler == dart2dart && $minified ] | 532 [ $compiler == dart2dart && $minified ] |
| 535 import_core_prefix_test: Pass | 533 import_core_prefix_test: Pass |
| 536 prefix22_test: Pass | 534 prefix22_test: Pass |
| 537 invocation_mirror2_test: Fail | 535 invocation_mirror2_test: Fail |
| OLD | NEW |