| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 typed_equality_test: Fail | 285 typed_equality_test: Fail |
| 286 | 286 |
| 287 | 287 |
| 288 # test issue 7337 (reference unknown ID from static is warning, even when with i
mport prefix) | 288 # test issue 7337 (reference unknown ID from static is warning, even when with i
mport prefix) |
| 289 prefix12_negative_test: Fail | 289 prefix12_negative_test: Fail |
| 290 prefix2_negative_test: Fail | 290 prefix2_negative_test: Fail |
| 291 | 291 |
| 292 # test issue 7523 (const declared without type, so not-a-function warning should
not be reported) | 292 # test issue 7523 (const declared without type, so not-a-function warning should
not be reported) |
| 293 call_through_getter_test: Fail | 293 call_through_getter_test: Fail |
| 294 | 294 |
| 295 mixin_illegal_cycles_test/01: Fail # issue 8027 | 295 |
| 296 mixin_illegal_cycles_test/02: Fail # issue 8027 | 296 # test issue 8127 (using mixin application as mixin) |
| 297 mixin_mixin_test: Fail |
| 298 |
| 297 | 299 |
| 298 # | 300 # |
| 299 # Add new dartc annotations above in alphabetical order | 301 # Add new dartc annotations above in alphabetical order |
| 300 # | 302 # |
| 301 | 303 |
| 302 # VM specific tests that should not be run by DartC. | 304 # VM specific tests that should not be run by DartC. |
| 303 *vm_test: Skip | 305 *vm_test: Skip |
| 304 *vm_negative_test: Skip | 306 *vm_negative_test: Skip |
| 305 | 307 |
| 306 | 308 |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 *: Skip | 575 *: Skip |
| 574 | 576 |
| 575 [ $arch == simarm ] | 577 [ $arch == simarm ] |
| 576 *: Skip | 578 *: Skip |
| 577 | 579 |
| 578 [ $arch == mips ] | 580 [ $arch == mips ] |
| 579 *: Skip | 581 *: Skip |
| 580 | 582 |
| 581 [ $arch == simmips ] | 583 [ $arch == simmips ] |
| 582 *: Skip | 584 *: Skip |
| OLD | NEW |