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