| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 unresolved_top_level_var_negative_test: Fail, OK | 494 unresolved_top_level_var_negative_test: Fail, OK |
| 495 | 495 |
| 496 # test issue 6871 | 496 # test issue 6871 |
| 497 block_scope_test: Fail, OK | 497 block_scope_test: Fail, OK |
| 498 | 498 |
| 499 # test issue 7021 | 499 # test issue 7021 |
| 500 instantiate_type_variable_negative_test: Fail | 500 instantiate_type_variable_negative_test: Fail |
| 501 type_variable_static_context_negative_test: Fail | 501 type_variable_static_context_negative_test: Fail |
| 502 | 502 |
| 503 | 503 |
| 504 # test issue 7062 (assignment to final variable is a static warning) |
| 505 final_for_in_variable_test/01: Fail |
| 506 final_param_negative_test: Fail |
| 507 final_var_negative_test: Fail |
| 508 final_variable_assignment_test/01: Fail |
| 509 final_variable_assignment_test/03: Fail |
| 510 final_variable_assignment_test/04: Fail |
| 511 final_variable_assignment_test/02: Fail |
| 512 scope_negative_test: Fail |
| 513 static_final_field2_negative_test: Fail |
| 514 |
| 515 |
| 516 |
| 504 # | 517 # |
| 505 # Add new dartc annotations above in alphabetical order | 518 # Add new dartc annotations above in alphabetical order |
| 506 # | 519 # |
| 507 | 520 |
| 508 # VM specific tests that should not be run by DartC. | 521 # VM specific tests that should not be run by DartC. |
| 509 *vm_test: Skip | 522 *vm_test: Skip |
| 510 *vm_negative_test: Skip | 523 *vm_negative_test: Skip |
| 511 | 524 |
| 512 | 525 |
| 513 [ $compiler == none && $runtime == drt ] | 526 [ $compiler == none && $runtime == drt ] |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 compile_time_constant_checked3_test/03: Fail, OK | 811 compile_time_constant_checked3_test/03: Fail, OK |
| 799 compile_time_constant_checked3_test/04: Fail, OK | 812 compile_time_constant_checked3_test/04: Fail, OK |
| 800 compile_time_constant_checked3_test/05: Fail, OK | 813 compile_time_constant_checked3_test/05: Fail, OK |
| 801 compile_time_constant_checked3_test/06: Fail, OK | 814 compile_time_constant_checked3_test/06: Fail, OK |
| 802 | 815 |
| 803 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 816 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 804 | 817 |
| 805 # This is a VM error when the compiled code is run. | 818 # This is a VM error when the compiled code is run. |
| 806 invocation_mirror_test: Fail # issue 3326, 3622. | 819 invocation_mirror_test: Fail # issue 3326, 3622. |
| 807 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 820 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |