| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 ConstructorReturnNegativeTest: Fail # Issue 225 | 173 ConstructorReturnNegativeTest: Fail # Issue 225 |
| 174 ConstructorReturnWithInitNegativeTest: Fail # Issue 225 | 174 ConstructorReturnWithInitNegativeTest: Fail # Issue 225 |
| 175 ConstructorReturnWithArrowNegativeTest: Fail # Issue 225 | 175 ConstructorReturnWithArrowNegativeTest: Fail # Issue 225 |
| 176 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 225 | 176 ConstructorReturnWithInitAndArrowNegativeTest: Fail # Issue 225 |
| 177 | 177 |
| 178 # VM specific tests that should not be run by DartC. | 178 # VM specific tests that should not be run by DartC. |
| 179 *VMTest: Skip | 179 *VMTest: Skip |
| 180 | 180 |
| 181 | 181 |
| 182 [ $arch == dartium ] | 182 [ $arch == dartium ] |
| 183 # Bug 5476054: print is only available if DOM is imported. | 183 # TODO: These need to be retriaged. |
| 184 Throw5Test: Fail | |
| 185 ExceptionTest: Fail | |
| 186 ExpectTest: Fail | 184 ExpectTest: Fail |
| 187 StringInterpolateTest: Fail | |
| 188 ExecuteFinally7Test: Fail | |
| 189 SavannahTest: Fail | |
| 190 Throw2Test: Fail | |
| 191 Throw3Test: Fail | |
| 192 HelloDartTest: Fail | |
| 193 ThrowTest: Fail | |
| 194 TryCatch3Test: Fail | |
| 195 StackTraceTest: Fail | 185 StackTraceTest: Fail |
| 196 Throw1Test: Fail | |
| 197 RegExp2Test: Fail | |
| 198 FannkuchTest: Fail | |
| 199 RichardsTest: Fail | 186 RichardsTest: Fail |
| 200 Throw6Test: Fail | |
| 201 RegEx2Test: Fail | |
| 202 DivByZeroTest: Fail | |
| 203 UnboundGetterTest: Fail | 187 UnboundGetterTest: Fail |
| 204 NativeTest: Fail | |
| 205 Throw4Test: Fail | |
| 206 ImplicitClosure1Test: Fail | |
| 207 Private2Test: Fail | 188 Private2Test: Fail |
| 208 ImportCoreImplNoPrefixTest: Fail | |
| 209 HelloScriptTest: Fail | |
| 210 ImportCoreImplNoPrefixTest: Fail | |
| 211 ImportCoreNoPrefixTest: Fail | |
| 212 Private3Test: Fail | 189 Private3Test: Fail |
| 213 GetterClosureExecutionOrderTest: Fail # Bug 5481595 | |
| 214 | 190 |
| 215 TypedMessageTest: Fail # Bug 5246195 | 191 TypedMessageTest: Fail # Bug 5246195 |
| 216 | 192 |
| 217 [ $arch == x64 ] | 193 [ $arch == x64 ] |
| 218 *: Skip | 194 *: Skip |
| 219 | 195 |
| 220 [ $arch == simarm ] | 196 [ $arch == simarm ] |
| 221 *: Skip | 197 *: Skip |
| 222 | 198 |
| 223 [ $arch == arm ] | 199 [ $arch == arm ] |
| 224 *: Skip | 200 *: Skip |
| OLD | NEW |