| 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 24 matching lines...) Expand all Loading... |
| 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 # These bugs refer currently ongoing language discussions. | 38 # These bugs refer currently ongoing language discussions. |
| 39 Constructor5Test: Fail # (Discussion ongoing) | 39 Constructor5Test: Fail # (Discussion ongoing) |
| 40 Constructor6Test: Fail # (Discussion ongoing) | 40 Constructor6Test: Fail # (Discussion ongoing) |
| 41 | 41 |
| 42 # Regular bugs which should be fixed. | 42 # Regular bugs which should be fixed. |
| 43 | 43 |
| 44 WrongNumberTypeArgumentsTest: Fail # Issue 441 | 44 WrongNumberTypeArgumentsTest: Fail # Issue 441 |
| 45 Prefix18NegativeTest: Fail # Issue 307 | |
| 46 Prefix20NegativeTest: Fail # Issue 307 | |
| 47 | 45 |
| 48 # DartC or Frog specific tests that should not be run by the VM | 46 # DartC or Frog specific tests that should not be run by the VM |
| 49 *DartcTest: Skip | 47 *DartcTest: Skip |
| 50 *DartcNegativeTest: Skip | 48 *DartcNegativeTest: Skip |
| 51 *FrogTest: Skip | 49 *FrogTest: Skip |
| 52 *FrogNegativeTest: Skip | 50 *FrogNegativeTest: Skip |
| 53 | 51 |
| 54 | 52 |
| 55 [ $component == vm && $mode == debug ] | 53 [ $component == vm && $mode == debug ] |
| 56 | 54 |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 StaticField2RunNegativeTest: Fail | 341 StaticField2RunNegativeTest: Fail |
| 344 | 342 |
| 345 [ $arch == x64 ] | 343 [ $arch == x64 ] |
| 346 *: Skip | 344 *: Skip |
| 347 | 345 |
| 348 [ $arch == simarm ] | 346 [ $arch == simarm ] |
| 349 *: Skip | 347 *: Skip |
| 350 | 348 |
| 351 [ $arch == arm ] | 349 [ $arch == arm ] |
| 352 *: Skip | 350 *: Skip |
| OLD | NEW |