| 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 29 matching lines...) Expand all Loading... |
| 40 ManyEchoServerTest: Skip # Bug 5103754 | 40 ManyEchoServerTest: Skip # Bug 5103754 |
| 41 CanonicalConstTest: Fail # Bug 5271563 | 41 CanonicalConstTest: Fail # Bug 5271563 |
| 42 | 42 |
| 43 ConstructorReturnNegativeTest: Fail # Issue 224 | 43 ConstructorReturnNegativeTest: Fail # Issue 224 |
| 44 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 | 44 ConstructorReturnWithInitNegativeTest: Fail # Issue 224 |
| 45 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 | 45 ConstructorReturnWithArrowNegativeTest: Fail # Issue 224 |
| 46 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 | 46 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 224 |
| 47 | 47 |
| 48 NonParameterizedFactory2Test: Fail # Bug 5257789 | 48 NonParameterizedFactory2Test: Fail # Bug 5257789 |
| 49 | 49 |
| 50 ImplicitThisTest/*: Fail # Issue TBD. |
| 51 |
| 50 # DartC specific tests that should not be run by the VM. | 52 # DartC specific tests that should not be run by the VM. |
| 51 *DartcTest: Skip | 53 *DartcTest: Skip |
| 52 | 54 |
| 53 [ $component == vm && $mode == debug ] | 55 [ $component == vm && $mode == debug ] |
| 54 NonParameterizedFactoryTest: Crash # Issue 226 | 56 NonParameterizedFactoryTest: Crash # Issue 226 |
| 55 | 57 |
| 56 # Problems specific to dartc optimized mode | 58 # Problems specific to dartc optimized mode |
| 57 [ ($component == dartc || $component == chromium) && $mode == release ] | 59 [ ($component == dartc || $component == chromium) && $mode == release ] |
| 58 MethodInvocationTest: Fail # Bug 5392266 | 60 MethodInvocationTest: Fail # Bug 5392266 |
| 59 Label2NegativeTest: Crash # Bug 5318228 | 61 Label2NegativeTest: Crash # Bug 5318228 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 BlackListedTest/06: Fail # Bug 5469684 | 155 BlackListedTest/06: Fail # Bug 5469684 |
| 154 BlackListedTest/07: Fail # Bug 5469684 | 156 BlackListedTest/07: Fail # Bug 5469684 |
| 155 BlackListedTest/08: Fail # Bug 5469684 | 157 BlackListedTest/08: Fail # Bug 5469684 |
| 156 BlackListedTest/09: Fail # Bug 5469684 | 158 BlackListedTest/09: Fail # Bug 5469684 |
| 157 BlackListedTest/10: Fail # Bug 5469684 | 159 BlackListedTest/10: Fail # Bug 5469684 |
| 158 BlackListedTest/11: Fail # Bug 5469684 | 160 BlackListedTest/11: Fail # Bug 5469684 |
| 159 BlackListedTest/12: Fail # Bug 5469684 | 161 BlackListedTest/12: Fail # Bug 5469684 |
| 160 | 162 |
| 161 FactoryArrowTest: Fail # Issue 223 | 163 FactoryArrowTest: Fail # Issue 223 |
| 162 | 164 |
| 165 ImplicitThisTest/01: Fail # Issue TBD. |
| 166 |
| 163 # VM specific tests that should not be run by DartC. | 167 # VM specific tests that should not be run by DartC. |
| 164 *VMTest: Skip | 168 *VMTest: Skip |
| 165 | 169 |
| 166 | 170 |
| 167 [ $component == dartium ] | 171 [ $component == dartium ] |
| 168 # TODO: These need to be retriaged. | 172 # TODO: These need to be retriaged. |
| 169 ExpectTest: Fail | 173 ExpectTest: Fail |
| 170 StackTraceTest: Fail | 174 StackTraceTest: Fail |
| 171 RichardsTest: Fail | 175 RichardsTest: Fail |
| 172 UnboundGetterTest: Fail | 176 UnboundGetterTest: Fail |
| 173 Private2Test: Fail | 177 Private2Test: Fail |
| 174 Private3Test: Fail | 178 Private3Test: Fail |
| 175 | 179 |
| 176 TypedMessageTest: Fail # Bug 5246195 | 180 TypedMessageTest: Fail # Bug 5246195 |
| 177 | 181 |
| 178 [ $arch == x64 ] | 182 [ $arch == x64 ] |
| 179 *: Skip | 183 *: Skip |
| 180 | 184 |
| 181 [ $arch == simarm ] | 185 [ $arch == simarm ] |
| 182 *: Skip | 186 *: Skip |
| 183 | 187 |
| 184 [ $arch == arm ] | 188 [ $arch == arm ] |
| 185 *: Skip | 189 *: Skip |
| OLD | NEW |