| 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 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 ExampleConstructorTest: Fail # Bug 4995181 | 34 ExampleConstructorTest: Fail # Bug 4995181 |
| 35 Constructor2Test: Fail # Bug 4995181 (evaluation order) | 35 Constructor2Test: Fail # Bug 4995181 (evaluation order) |
| 36 Constructor3Test: Fail # Bug 4995181 (evaluation order) | 36 Constructor3Test: Fail # Bug 4995181 (evaluation order) |
| 37 | 37 |
| 38 # Regular bugs which should be fixed. | 38 # Regular bugs which should be fixed. |
| 39 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. | 39 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. |
| 40 ManyEchoServerTest: Skip # Bug 5103754 | 40 ManyEchoServerTest: Skip # Bug 5103754 |
| 41 CanonicalConstTest: Fail # Bug 5270133 | 41 CanonicalConstTest: Fail # Bug 5271563 |
| 42 | 42 |
| 43 ConstructorReturnNegativeTest: Fail # Issue 224 | 43 ConstructorReturnNegativeTest: Fail # Issue 224 |
| 44 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | 44 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 |
| 45 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | 45 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 |
| 46 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 | 46 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 |
| 47 | 47 |
| 48 NonParameterizedFactory2Test: Fail # Bug 5257789 | 48 NonParameterizedFactory2Test: Fail # Bug 5257789 |
| 49 | 49 |
| 50 # DartC specific tests that should not be run by the VM. | 50 # DartC specific tests that should not be run by the VM. |
| 51 *DartcTest: Skip | 51 *DartcTest: Skip |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 TypedMessageTest: Fail # Bug 5246195 | 175 TypedMessageTest: Fail # Bug 5246195 |
| 176 | 176 |
| 177 [ $arch == x64 ] | 177 [ $arch == x64 ] |
| 178 *: Skip | 178 *: Skip |
| 179 | 179 |
| 180 [ $arch == simarm ] | 180 [ $arch == simarm ] |
| 181 *: Skip | 181 *: Skip |
| 182 | 182 |
| 183 [ $arch == arm ] | 183 [ $arch == arm ] |
| 184 *: Skip | 184 *: Skip |
| OLD | NEW |