| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 prefix12_negative_test: Fail | 283 prefix12_negative_test: Fail |
| 284 prefix2_negative_test: Fail | 284 prefix2_negative_test: Fail |
| 285 | 285 |
| 286 # test issue 7523 (const declared without type, so not-a-function warning should
not be reported) | 286 # test issue 7523 (const declared without type, so not-a-function warning should
not be reported) |
| 287 call_through_getter_test: Fail | 287 call_through_getter_test: Fail |
| 288 | 288 |
| 289 | 289 |
| 290 # test issue 8127 (using mixin application as mixin) | 290 # test issue 8127 (using mixin application as mixin) |
| 291 mixin_mixin_test: Fail | 291 mixin_mixin_test: Fail |
| 292 | 292 |
| 293 # test issue 8801 |
| 294 super_operator_index_test/04: Fail |
| 293 | 295 |
| 294 # | 296 # |
| 295 # Add new dartc annotations above in alphabetical order | 297 # Add new dartc annotations above in alphabetical order |
| 296 # | 298 # |
| 297 | 299 |
| 298 # VM specific tests that should not be run by DartC. | 300 # VM specific tests that should not be run by DartC. |
| 299 *vm_test: Skip | 301 *vm_test: Skip |
| 300 *vm_negative_test: Skip | 302 *vm_negative_test: Skip |
| 301 | 303 |
| 302 | 304 |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 *: Skip | 555 *: Skip |
| 554 | 556 |
| 555 [ $arch == simarm ] | 557 [ $arch == simarm ] |
| 556 *: Skip | 558 *: Skip |
| 557 | 559 |
| 558 [ $arch == mips ] | 560 [ $arch == mips ] |
| 559 *: Skip | 561 *: Skip |
| 560 | 562 |
| 561 [ $arch == simmips ] | 563 [ $arch == simmips ] |
| 562 *: Skip | 564 *: Skip |
| OLD | NEW |