| 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 20 matching lines...) Expand all Loading... |
| 31 ImpliedInterfaceTest: Fail # Bug 5349944 | 31 ImpliedInterfaceTest: Fail # Bug 5349944 |
| 32 | 32 |
| 33 # These bugs refer currently ongoing language discussions. | 33 # These bugs refer currently ongoing language discussions. |
| 34 Constructor5Test: Fail # Bug 8440015 | 34 Constructor5Test: Fail # Bug 8440015 |
| 35 Constructor6Test: Fail # Bug 8440015 | 35 Constructor6Test: Fail # Bug 8440015 |
| 36 | 36 |
| 37 # Regular bugs which should be fixed. | 37 # Regular bugs which should be fixed. |
| 38 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. | 38 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. |
| 39 ManyEchoServerTest: Skip # Bug 5103754 | 39 ManyEchoServerTest: Skip # Bug 5103754 |
| 40 | 40 |
| 41 ConstructorReturnNegativeTest: Fail # Issue 224 | |
| 42 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | |
| 43 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | |
| 44 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 | |
| 45 | |
| 46 NonParameterizedFactory2Test: Fail # Bug 5257789 | 41 NonParameterizedFactory2Test: Fail # Bug 5257789 |
| 47 | 42 |
| 48 WrongNumberTypeArgumentsTest: Fail # Bug 5532690 | 43 WrongNumberTypeArgumentsTest: Fail # Bug 5532690 |
| 49 Prefix18NegativeTest: Fail # Issue 307 | 44 Prefix18NegativeTest: Fail # Issue 307 |
| 50 Prefix20NegativeTest: Fail # Issue 307 | 45 Prefix20NegativeTest: Fail # Issue 307 |
| 51 | 46 |
| 52 # DartC or Frog specific tests that should not be run by the VM | 47 # DartC or Frog specific tests that should not be run by the VM |
| 53 *DartcTest: Skip | 48 *DartcTest: Skip |
| 54 *DartcNegativeTest: Skip | 49 *DartcNegativeTest: Skip |
| 55 *FrogTest: Skip | 50 *FrogTest: Skip |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 | 344 |
| 350 | 345 |
| 351 [ $arch == x64 ] | 346 [ $arch == x64 ] |
| 352 *: Skip | 347 *: Skip |
| 353 | 348 |
| 354 [ $arch == simarm ] | 349 [ $arch == simarm ] |
| 355 *: Skip | 350 *: Skip |
| 356 | 351 |
| 357 [ $arch == arm ] | 352 [ $arch == arm ] |
| 358 *: Skip | 353 *: Skip |
| OLD | NEW |