| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 # Issue 1034 | 63 # Issue 1034 |
| 64 ConstructorDuplicateInitializersTest/01: Fail | 64 ConstructorDuplicateInitializersTest/01: Fail |
| 65 ConstructorDuplicateInitializersTest/02: Fail | 65 ConstructorDuplicateInitializersTest/02: Fail |
| 66 | 66 |
| 67 # Issue 1355 | 67 # Issue 1355 |
| 68 CallOperatorTest: Fail | 68 CallOperatorTest: Fail |
| 69 | 69 |
| 70 ConstConstructorSyntaxTest/05: Fail | 70 ConstConstructorSyntaxTest/05: Fail |
| 71 | 71 |
| 72 AssignStaticTypeTest/01: Skip # Issue 2070 (fails only in checked mode) | |
| 73 AssignStaticTypeTest/02: Skip # Issue 2070 (fails only in checked mode) | |
| 74 | |
| 75 ConstructorRedirectTest/01: Fail # Issue 2103. | 72 ConstructorRedirectTest/01: Fail # Issue 2103. |
| 76 | 73 |
| 77 # DartC or Frog specific tests that should not be run by the VM | 74 # DartC or Frog specific tests that should not be run by the VM |
| 78 *DartcTest: Skip | 75 *DartcTest: Skip |
| 79 *DartcNegativeTest: Skip | 76 *DartcNegativeTest: Skip |
| 80 *FrogTest: Skip | 77 *FrogTest: Skip |
| 81 *FrogNegativeTest: Skip | 78 *FrogNegativeTest: Skip |
| 82 | 79 |
| 83 [ $compiler == none && $unchecked ] | 80 [ $compiler == none && $unchecked ] |
| 84 | 81 |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 [ $compiler == frog && $mode == debug ] | 453 [ $compiler == frog && $mode == debug ] |
| 457 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 454 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 458 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 455 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 459 | 456 |
| 460 [ $arch == simarm ] | 457 [ $arch == simarm ] |
| 461 *: Skip | 458 *: Skip |
| 462 | 459 |
| 463 [ $arch == arm ] | 460 [ $arch == arm ] |
| 464 *: Skip | 461 *: Skip |
| 465 | 462 |
| OLD | NEW |