| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 # Regular bugs which should be fixed. | 54 # Regular bugs which should be fixed. |
| 55 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. | 55 SuperNegativeTest: Fail # Bug 4400118 - Language still in flux. |
| 56 ManyEchoServerTest: Skip # Bug 5103754 | 56 ManyEchoServerTest: Skip # Bug 5103754 |
| 57 CanonicalConstTest: Fail # Bug 5270133 | 57 CanonicalConstTest: Fail # Bug 5270133 |
| 58 GenericParameterizedExtendsTest: Skip # Bug 5391643 | 58 GenericParameterizedExtendsTest: Skip # Bug 5391643 |
| 59 | 59 |
| 60 # DartC specific tests that should not be run by the VM. | 60 # DartC specific tests that should not be run by the VM. |
| 61 *DartcTest: Skip | 61 *DartcTest: Skip |
| 62 | 62 |
| 63 [ $arch == ia32 && $system == win32] |
| 64 CyclicImportTest: Skip # Codesite issue 172 |
| 65 |
| 63 # Problems specific to dartc optimized mode | 66 # Problems specific to dartc optimized mode |
| 64 [ ($arch == dartc || $arch == chromium) && $mode == release ] | 67 [ ($arch == dartc || $arch == chromium) && $mode == release ] |
| 65 MethodInvocationTest: Fail # Bug 5392266 | 68 MethodInvocationTest: Fail # Bug 5392266 |
| 66 Label2NegativeTest: Crash # Bug 5318228 | 69 Label2NegativeTest: Crash # Bug 5318228 |
| 67 NullPointerExceptionTest: Fail # Bug 5391976 | 70 NullPointerExceptionTest: Fail # Bug 5391976 |
| 68 CallThroughNullGetterTest: Fail # Bug 5391976 | 71 CallThroughNullGetterTest: Fail # Bug 5391976 |
| 69 Private3Test: Fail # Bug 5391976 | 72 Private3Test: Fail # Bug 5391976 |
| 70 Switch3NegativeTest: Crash # Bug 5318228 | 73 Switch3NegativeTest: Crash # Bug 5318228 |
| 71 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr
owing NSME | 74 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr
owing NSME |
| 72 CTConst2Test: Fail # Codesite issue 124 | 75 CTConst2Test: Fail # Codesite issue 124 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 TypedMessageTest: Fail # Bug 5246195 | 204 TypedMessageTest: Fail # Bug 5246195 |
| 202 | 205 |
| 203 [ $arch == x64 ] | 206 [ $arch == x64 ] |
| 204 *: Skip | 207 *: Skip |
| 205 | 208 |
| 206 [ $arch == simarm ] | 209 [ $arch == simarm ] |
| 207 *: Skip | 210 *: Skip |
| 208 | 211 |
| 209 [ $arch == arm ] | 212 [ $arch == arm ] |
| 210 *: Skip | 213 *: Skip |
| OLD | NEW |