| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 unresolved_top_level_var_negative_test: Fail, OK | 492 unresolved_top_level_var_negative_test: Fail, OK |
| 493 | 493 |
| 494 # test issue 6871 | 494 # test issue 6871 |
| 495 block_scope_test: Fail, OK | 495 block_scope_test: Fail, OK |
| 496 | 496 |
| 497 # test issue 7021 | 497 # test issue 7021 |
| 498 instantiate_type_variable_negative_test: Fail | 498 instantiate_type_variable_negative_test: Fail |
| 499 type_variable_static_context_negative_test: Fail | 499 type_variable_static_context_negative_test: Fail |
| 500 | 500 |
| 501 | 501 |
| 502 # test issue 7081 (assignment to top-level method is warning) |
| 503 assign_top_method_negative_test: Fail |
| 504 |
| 505 |
| 502 # test issue 7062 (assignment to final variable is a static warning) | 506 # test issue 7062 (assignment to final variable is a static warning) |
| 503 final_for_in_variable_test/01: Fail | 507 final_for_in_variable_test/01: Fail |
| 504 final_param_negative_test: Fail | 508 final_param_negative_test: Fail |
| 505 final_var_negative_test: Fail | 509 final_var_negative_test: Fail |
| 506 final_variable_assignment_test/01: Fail | 510 final_variable_assignment_test/01: Fail |
| 507 final_variable_assignment_test/03: Fail | 511 final_variable_assignment_test/03: Fail |
| 508 final_variable_assignment_test/04: Fail | 512 final_variable_assignment_test/04: Fail |
| 509 final_variable_assignment_test/02: Fail | 513 final_variable_assignment_test/02: Fail |
| 510 scope_negative_test: Fail | 514 scope_negative_test: Fail |
| 511 static_final_field2_negative_test: Fail | 515 static_final_field2_negative_test: Fail |
| 512 | 516 |
| 513 | 517 |
| 518 # test issue 7098 (unknown type in 'catch' is warning in 0.13) |
| 519 try_catch_on_syntax_test/01: Fail |
| 520 try_catch_on_syntax_test/07: Fail |
| 521 try_catch_syntax_test/08: Fail |
| 522 |
| 514 | 523 |
| 515 # | 524 # |
| 516 # Add new dartc annotations above in alphabetical order | 525 # Add new dartc annotations above in alphabetical order |
| 517 # | 526 # |
| 518 | 527 |
| 519 # VM specific tests that should not be run by DartC. | 528 # VM specific tests that should not be run by DartC. |
| 520 *vm_test: Skip | 529 *vm_test: Skip |
| 521 *vm_negative_test: Skip | 530 *vm_negative_test: Skip |
| 522 | 531 |
| 523 | 532 |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 compile_time_constant_checked3_test/03: Fail, OK | 816 compile_time_constant_checked3_test/03: Fail, OK |
| 808 compile_time_constant_checked3_test/04: Fail, OK | 817 compile_time_constant_checked3_test/04: Fail, OK |
| 809 compile_time_constant_checked3_test/05: Fail, OK | 818 compile_time_constant_checked3_test/05: Fail, OK |
| 810 compile_time_constant_checked3_test/06: Fail, OK | 819 compile_time_constant_checked3_test/06: Fail, OK |
| 811 | 820 |
| 812 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 821 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 813 | 822 |
| 814 # This is a VM error when the compiled code is run. | 823 # This is a VM error when the compiled code is run. |
| 815 invocation_mirror_test: Fail # issue 3326, 3622. | 824 invocation_mirror_test: Fail # issue 3326, 3622. |
| 816 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 825 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |