| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 scope_negative_test: Fail | 260 scope_negative_test: Fail |
| 261 static_final_field2_negative_test: Fail | 261 static_final_field2_negative_test: Fail |
| 262 | 262 |
| 263 | 263 |
| 264 # test issue 7098 (unknown type in 'catch' is warning in 0.13) | 264 # test issue 7098 (unknown type in 'catch' is warning in 0.13) |
| 265 try_catch_on_syntax_test/01: Fail | 265 try_catch_on_syntax_test/01: Fail |
| 266 try_catch_on_syntax_test/07: Fail | 266 try_catch_on_syntax_test/07: Fail |
| 267 try_catch_syntax_test/08: Fail | 267 try_catch_syntax_test/08: Fail |
| 268 | 268 |
| 269 | 269 |
| 270 # test issue 7298 (use deprecated === and !==) |
| 271 compile_time_constant8_test: Fail |
| 272 compile_time_constant_b_test: Fail |
| 273 compile_time_constant_d_test: Fail |
| 274 compile_time_constant_e_test: Fail |
| 275 licm_test: Fail |
| 276 typed_equality_test: Fail |
| 277 |
| 278 |
| 279 |
| 280 |
| 270 # | 281 # |
| 271 # Add new dartc annotations above in alphabetical order | 282 # Add new dartc annotations above in alphabetical order |
| 272 # | 283 # |
| 273 | 284 |
| 274 # VM specific tests that should not be run by DartC. | 285 # VM specific tests that should not be run by DartC. |
| 275 *vm_test: Skip | 286 *vm_test: Skip |
| 276 *vm_negative_test: Skip | 287 *vm_negative_test: Skip |
| 277 | 288 |
| 278 | 289 |
| 279 [ $compiler == none && $runtime == drt ] | 290 [ $compiler == none && $runtime == drt ] |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 | 531 |
| 521 # This is a VM error when the compiled code is run. | 532 # This is a VM error when the compiled code is run. |
| 522 invocation_mirror_test: Fail # issue 3326. | 533 invocation_mirror_test: Fail # issue 3326. |
| 523 invocation_mirror_indirect_test: Fail # issue 3326. | 534 invocation_mirror_indirect_test: Fail # issue 3326. |
| 524 super_call4_test: Fail # issue 3326. | 535 super_call4_test: Fail # issue 3326. |
| 525 | 536 |
| 526 [ $compiler == dart2dart && $minified ] | 537 [ $compiler == dart2dart && $minified ] |
| 527 import_core_prefix_test: Pass | 538 import_core_prefix_test: Pass |
| 528 prefix22_test: Pass | 539 prefix22_test: Pass |
| 529 invocation_mirror2_test: Fail | 540 invocation_mirror2_test: Fail |
| OLD | NEW |