| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 17 matching lines...) Expand all Loading... |
| 28 ImpliedInterfaceTest: Fail # Bug 5349944 | 28 ImpliedInterfaceTest: Fail # Bug 5349944 |
| 29 FBoundedQuantificationTest: Skip # Issue 439 | 29 FBoundedQuantificationTest: Skip # Issue 439 |
| 30 DefaultFactoryLibraryTest: Fail # Issue 514 | 30 DefaultFactoryLibraryTest: Fail # Issue 514 |
| 31 | 31 |
| 32 ImplicitThisTest/01: Fail # Issue 374 (not yet specified) | 32 ImplicitThisTest/01: Fail # Issue 374 (not yet specified) |
| 33 ImplicitThisTest/02: Fail # Issue 374 | 33 ImplicitThisTest/02: Fail # Issue 374 |
| 34 ImplicitThisTest/03: Fail # Issue 374 | 34 ImplicitThisTest/03: Fail # Issue 374 |
| 35 ImplicitThisTest/04: Fail # Issue 374 | 35 ImplicitThisTest/04: Fail # Issue 374 |
| 36 ImplicitThisTest/none: Fail # Issue 374 | 36 ImplicitThisTest/none: Fail # Issue 374 |
| 37 | 37 |
| 38 LibrarySameNameUsedTest: Fail # Issue 686 |
| 39 |
| 38 # These bugs refer currently ongoing language discussions. | 40 # These bugs refer currently ongoing language discussions. |
| 39 Constructor5Test: Fail # (Discussion ongoing) | 41 Constructor5Test: Fail # (Discussion ongoing) |
| 40 Constructor6Test: Fail # (Discussion ongoing) | 42 Constructor6Test: Fail # (Discussion ongoing) |
| 41 | 43 |
| 42 # Regular bugs which should be fixed. | 44 # Regular bugs which should be fixed. |
| 43 | 45 |
| 44 WrongNumberTypeArgumentsTest: Fail # Issue 441 | 46 WrongNumberTypeArgumentsTest: Fail # Issue 441 |
| 45 | 47 |
| 46 # DartC or Frog specific tests that should not be run by the VM | 48 # DartC or Frog specific tests that should not be run by the VM |
| 47 *DartcTest: Skip | 49 *DartcTest: Skip |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 StaticField2RunNegativeTest: Fail | 376 StaticField2RunNegativeTest: Fail |
| 375 | 377 |
| 376 [ $arch == x64 ] | 378 [ $arch == x64 ] |
| 377 *: Skip | 379 *: Skip |
| 378 | 380 |
| 379 [ $arch == simarm ] | 381 [ $arch == simarm ] |
| 380 *: Skip | 382 *: Skip |
| 381 | 383 |
| 382 [ $arch == arm ] | 384 [ $arch == arm ] |
| 383 *: Skip | 385 *: Skip |
| OLD | NEW |