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