| 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 architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 | 217 |
| 218 BitOperationsTest: Fail # relies on big integers not available in JS | 218 BitOperationsTest: Fail # relies on big integers not available in JS |
| 219 CallThroughGetterTest: Fail | 219 CallThroughGetterTest: Fail |
| 220 CanonicalConstTest: Fail # type in const array allocation is erased | 220 CanonicalConstTest: Fail # type in const array allocation is erased |
| 221 CharEscapeTest: Fail | 221 CharEscapeTest: Fail |
| 222 ClassOverrideNegativeTest: Fail | 222 ClassOverrideNegativeTest: Fail |
| 223 ClosuresWithComplexParamsTest: Fail | 223 ClosuresWithComplexParamsTest: Fail |
| 224 ConstFactoryNegativeTest: Fail | 224 ConstFactoryNegativeTest: Fail |
| 225 ConstObjectsAreImmutableTest: Fail | 225 ConstObjectsAreImmutableTest: Fail |
| 226 ConstructorDefaultTest: Fail | 226 ConstructorDefaultTest: Fail |
| 227 ConstructorSetterNegativeTest: Fail | |
| 228 CTConstTest: Fail # Not checking for generic type in const expression. | 227 CTConstTest: Fail # Not checking for generic type in const expression. |
| 229 DynamicTest: Fail | 228 DynamicTest: Fail |
| 230 ExampleConstructorTest: Fail | 229 ExampleConstructorTest: Fail |
| 231 Constructor2Test: Fail | 230 Constructor2Test: Fail |
| 232 Constructor3Test: Fail | 231 Constructor3Test: Fail |
| 233 Constructor4Test: Fail | 232 Constructor4Test: Fail |
| 234 Constructor5Test: Fail # Order of initializers. | 233 Constructor5Test: Fail # Order of initializers. |
| 235 Constructor6Test: Fail # Parse failure in initializers. | 234 Constructor6Test: Fail # Parse failure in initializers. |
| 236 ExecuteFinally6Test: Fail | 235 ExecuteFinally6Test: Fail |
| 237 ExpectTest: Fail | 236 ExpectTest: Fail |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 StaticField2RunNegativeTest: Fail | 356 StaticField2RunNegativeTest: Fail |
| 358 | 357 |
| 359 [ $arch == x64 ] | 358 [ $arch == x64 ] |
| 360 *: Skip | 359 *: Skip |
| 361 | 360 |
| 362 [ $arch == simarm ] | 361 [ $arch == simarm ] |
| 363 *: Skip | 362 *: Skip |
| 364 | 363 |
| 365 [ $arch == arm ] | 364 [ $arch == arm ] |
| 366 *: Skip | 365 *: Skip |
| OLD | NEW |