| 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 an architecture other than the one you are working on. | 10 # failed on an architecture other than the one you are working on. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 BlackListedTest/12: Fail # Bug 5469684 | 45 BlackListedTest/12: Fail # Bug 5469684 |
| 46 | 46 |
| 47 # These bugs refer currently ongoing language discussions. | 47 # These bugs refer currently ongoing language discussions. |
| 48 ExampleConstructorTest: Fail # Bug 4995181 | 48 ExampleConstructorTest: Fail # Bug 4995181 |
| 49 | 49 |
| 50 | 50 |
| 51 # Regular bugs which should be fixed. | 51 # Regular bugs which should be fixed. |
| 52 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. | 52 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. |
| 53 ManyEchoServerTest: Skip # Bug 5103754 | 53 ManyEchoServerTest: Skip # Bug 5103754 |
| 54 CanonicalConstTest: Fail # Bug 5270133 | 54 CanonicalConstTest: Fail # Bug 5270133 |
| 55 GenericParameterizedExtendsTest: Skip # Bug 5391643 | |
| 56 | |
| 57 | 55 |
| 58 ConstructorReturnNegativeTest: Fail # Issue 224 | 56 ConstructorReturnNegativeTest: Fail # Issue 224 |
| 59 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | 57 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 |
| 60 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | 58 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 |
| 61 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 | 59 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 |
| 62 | 60 |
| 63 NonParameterizedFactory2Test: Fail # Bug 5257789 | 61 NonParameterizedFactory2Test: Fail # Bug 5257789 |
| 64 | 62 |
| 65 # DartC specific tests that should not be run by the VM. | 63 # DartC specific tests that should not be run by the VM. |
| 66 *DartcTest: Skip | 64 *DartcTest: Skip |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 TypedMessageTest: Fail # Bug 5246195 | 221 TypedMessageTest: Fail # Bug 5246195 |
| 224 | 222 |
| 225 [ $arch == x64 ] | 223 [ $arch == x64 ] |
| 226 *: Skip | 224 *: Skip |
| 227 | 225 |
| 228 [ $arch == simarm ] | 226 [ $arch == simarm ] |
| 229 *: Skip | 227 *: Skip |
| 230 | 228 |
| 231 [ $arch == arm ] | 229 [ $arch == arm ] |
| 232 *: Skip | 230 *: Skip |
| OLD | NEW |