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