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