| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 *DartcTest: Skip | 202 *DartcTest: Skip |
| 203 *DartcNegativeTest: Skip | 203 *DartcNegativeTest: Skip |
| 204 # Currently, these patterns skip three tests: | 204 # Currently, these patterns skip three tests: |
| 205 # MathVMTest - correctly skipped as this relies on VM guarantees | 205 # MathVMTest - correctly skipped as this relies on VM guarantees |
| 206 # - should add a version of this with the --enable_type_checks flag | 206 # - should add a version of this with the --enable_type_checks flag |
| 207 # TypeVMTest - correctly skipped as this relies on detailed of TypeError | 207 # TypeVMTest - correctly skipped as this relies on detailed of TypeError |
| 208 # TypeDartcTest - should pass, need refactoring to get frog safe version | 208 # TypeDartcTest - should pass, need refactoring to get frog safe version |
| 209 | 209 |
| 210 BitOperationsTest: Fail # relies on big integers not available in JS | 210 BitOperationsTest: Fail # relies on big integers not available in JS |
| 211 CallThroughGetterTest: Fail | 211 CallThroughGetterTest: Fail |
| 212 CharEscapeTest: Fail | 212 CharEscapeTest: Fail # relies on 4 byte unicode not available in JS |
| 213 ClassOverrideNegativeTest: Fail | 213 ClassOverrideNegativeTest: Fail |
| 214 ClosureSharedStateTest: Fail | 214 ClosureSharedStateTest: Fail |
| 215 ConstFactoryNegativeTest: Fail | 215 ConstFactoryNegativeTest: Fail |
| 216 ConstObjectsAreImmutableTest: Fail | 216 ConstObjectsAreImmutableTest: Fail |
| 217 DefaultFactoryLibraryTest: Fail # Issue 514 | 217 DefaultFactoryLibraryTest: Fail # Issue 514 |
| 218 DynamicTest: Fail | 218 DynamicTest: Fail |
| 219 ExampleConstructorTest: Fail | 219 ExampleConstructorTest: Fail |
| 220 Constructor2Test: Fail | 220 Constructor2Test: Fail |
| 221 Constructor3Test: Fail | 221 Constructor3Test: Fail |
| 222 Constructor5Test: Fail # Order of initializers. | 222 Constructor5Test: Fail # Order of initializers. |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 Prefix22NegativeTest: Fail | 292 Prefix22NegativeTest: Fail |
| 293 Prefix23NegativeTest: Fail | 293 Prefix23NegativeTest: Fail |
| 294 PrivateMemberTest: Fail | 294 PrivateMemberTest: Fail |
| 295 PrivateMember2NegativeTest: Fail | 295 PrivateMember2NegativeTest: Fail |
| 296 PrivateMember3NegativeTest: Fail | 296 PrivateMember3NegativeTest: Fail |
| 297 PrivateTest: Fail | 297 PrivateTest: Fail |
| 298 PseudoKWNegativeTest: Fail # verifying test vs. spec - issue #356 | 298 PseudoKWNegativeTest: Fail # verifying test vs. spec - issue #356 |
| 299 RegExp3Test: Fail | 299 RegExp3Test: Fail |
| 300 ScopeNegativeTest: Fail | 300 ScopeNegativeTest: Fail |
| 301 ScriptNegativeTest: Fail | 301 ScriptNegativeTest: Fail |
| 302 StringEscapesTest: Fail | |
| 303 StringTest: Fail | 302 StringTest: Fail |
| 304 SuperImplicitClosureTest: Fail | 303 SuperImplicitClosureTest: Fail |
| 305 SuperTest: Fail # this is testing precise ordering of super constructor call | 304 SuperTest: Fail # this is testing precise ordering of super constructor call |
| 306 SwitchLabelTest: Fail | 305 SwitchLabelTest: Fail |
| 307 TryCatch9NegativeTest: Fail | 306 TryCatch9NegativeTest: Fail |
| 308 TypeChecksInFactoryMethodTest: Fail # Issue 925 | 307 TypeChecksInFactoryMethodTest: Fail # Issue 925 |
| 309 TypeVariableBoundsTest/00: Fail # these tests would work if the type was constru
cted | 308 TypeVariableBoundsTest/00: Fail # these tests would work if the type was constru
cted |
| 310 TypeVariableBoundsTest/01: Fail | 309 TypeVariableBoundsTest/01: Fail |
| 311 TypeVariableBoundsTest/10: Fail | 310 TypeVariableBoundsTest/10: Fail |
| 312 WrongNumberTypeArgumentsTest: Fail | 311 WrongNumberTypeArgumentsTest: Fail |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 | 352 |
| 354 | 353 |
| 355 [ $arch == x64 ] | 354 [ $arch == x64 ] |
| 356 *: Skip | 355 *: Skip |
| 357 | 356 |
| 358 [ $arch == simarm ] | 357 [ $arch == simarm ] |
| 359 *: Skip | 358 *: Skip |
| 360 | 359 |
| 361 [ $arch == arm ] | 360 [ $arch == arm ] |
| 362 *: Skip | 361 *: Skip |
| OLD | NEW |