| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 Factory2NegativeTest: Fail | 227 Factory2NegativeTest: Fail |
| 228 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 228 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 229 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 229 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 230 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 230 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 231 ImplementTypeParameterNegativeTest: Skip # Issue 887 | 231 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 232 FactoryImplementationTest: Fail # Issue 523 | 232 FactoryImplementationTest: Fail # Issue 523 |
| 233 PseudoKWTest: Fail # Issue 356 | 233 PseudoKWTest: Fail # Issue 356 |
| 234 NamingTest: Fail # Issue 356 | 234 NamingTest: Fail # Issue 356 |
| 235 DuplicateImplementsTest: Skip # Issue 976 | 235 DuplicateImplementsTest: Skip # Issue 976 |
| 236 | 236 |
| 237 CondExprTest: Fail |
| 238 |
| 237 SavannahTest: Skip # TODO(jimhug): Seems flaky on some configs - investigate. | 239 SavannahTest: Skip # TODO(jimhug): Seems flaky on some configs - investigate. |
| 238 | 240 |
| 239 # VM or DartC specific tests not to be run by Frog. See language.status | 241 # VM or DartC specific tests not to be run by Frog. See language.status |
| 240 *VMTest: Skip | 242 *VMTest: Skip |
| 241 *VMNegativeTest: Skip | 243 *VMNegativeTest: Skip |
| 242 *DartcTest: Skip | 244 *DartcTest: Skip |
| 243 *DartcNegativeTest: Skip | 245 *DartcNegativeTest: Skip |
| 244 # Currently, these patterns skip three tests: | 246 # Currently, these patterns skip three tests: |
| 245 # MathVMTest - correctly skipped as this relies on VM guarantees | 247 # MathVMTest - correctly skipped as this relies on VM guarantees |
| 246 # - should add a version of this with the --enable_type_checks flag | 248 # - should add a version of this with the --enable_type_checks flag |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 # these tests are inconsistent in frogium and frogsh-node, investigate | 431 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 430 StaticField1RunNegativeTest: Pass # but error is not correct | 432 StaticField1RunNegativeTest: Pass # but error is not correct |
| 431 StaticField2RunNegativeTest: Pass # but error is not correct | 433 StaticField2RunNegativeTest: Pass # but error is not correct |
| 432 | 434 |
| 433 | 435 |
| 434 [ $arch == simarm ] | 436 [ $arch == simarm ] |
| 435 *: Skip | 437 *: Skip |
| 436 | 438 |
| 437 [ $arch == arm ] | 439 [ $arch == arm ] |
| 438 *: Skip | 440 *: Skip |
| OLD | NEW |