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