| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 ManyEchoServerTest: Skip # Bug 5103754 | 54 ManyEchoServerTest: Skip # Bug 5103754 |
| 55 CanonicalConstTest: Fail # Bug 5270133 | 55 CanonicalConstTest: Fail # Bug 5270133 |
| 56 GenericParameterizedExtendsTest: Skip # Bug 5391643 | 56 GenericParameterizedExtendsTest: Skip # Bug 5391643 |
| 57 | 57 |
| 58 | 58 |
| 59 ConstructorReturnNegativeTest: Fail # Issue 224 | 59 ConstructorReturnNegativeTest: Fail # Issue 224 |
| 60 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | 60 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 |
| 61 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | 61 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 |
| 62 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 | 62 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 |
| 63 | 63 |
| 64 NonParameterizedFactory2Test: Fail # Bug 5257789 |
| 64 | 65 |
| 65 # DartC specific tests that should not be run by the VM. | 66 # DartC specific tests that should not be run by the VM. |
| 66 *DartcTest: Skip | 67 *DartcTest: Skip |
| 67 | 68 |
| 69 [ ($arch == ia32 || $arch == dartium) && $mode == debug ] |
| 70 NonParameterizedFactoryTest: Crash # Issue 226 |
| 71 |
| 72 |
| 68 [ $arch == ia32 && $system == win32] | 73 [ $arch == ia32 && $system == win32] |
| 69 CyclicImportTest: Skip # Codesite issue 172 | 74 CyclicImportTest: Skip # Codesite issue 172 |
| 70 | 75 |
| 71 # Problems specific to dartc optimized mode | 76 # Problems specific to dartc optimized mode |
| 72 [ ($arch == dartc || $arch == chromium) && $mode == release ] | 77 [ ($arch == dartc || $arch == chromium) && $mode == release ] |
| 73 MethodInvocationTest: Fail # Bug 5392266 | 78 MethodInvocationTest: Fail # Bug 5392266 |
| 74 Label2NegativeTest: Crash # Bug 5318228 | 79 Label2NegativeTest: Crash # Bug 5318228 |
| 75 NullPointerExceptionTest: Fail # Bug 5391976 | 80 NullPointerExceptionTest: Fail # Bug 5391976 |
| 76 CallThroughNullGetterTest: Fail # Bug 5391976 | 81 CallThroughNullGetterTest: Fail # Bug 5391976 |
| 77 Private3Test: Fail # Bug 5391976 | 82 Private3Test: Fail # Bug 5391976 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 TypedMessageTest: Fail # Bug 5246195 | 221 TypedMessageTest: Fail # Bug 5246195 |
| 217 | 222 |
| 218 [ $arch == x64 ] | 223 [ $arch == x64 ] |
| 219 *: Skip | 224 *: Skip |
| 220 | 225 |
| 221 [ $arch == simarm ] | 226 [ $arch == simarm ] |
| 222 *: Skip | 227 *: Skip |
| 223 | 228 |
| 224 [ $arch == arm ] | 229 [ $arch == arm ] |
| 225 *: Skip | 230 *: Skip |
| OLD | NEW |