| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 Factory3Test: Fail # Issue 417 | 206 Factory3Test: Fail # Issue 417 |
| 207 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 207 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 208 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 208 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 209 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 209 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 210 ImplementTypeParameterNegativeTest: Skip # Issue 887 | 210 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 211 FactoryImplementationTest: Fail # Issue 523 | 211 FactoryImplementationTest: Fail # Issue 523 |
| 212 PseudoKWTest: Fail # Issue 356 | 212 PseudoKWTest: Fail # Issue 356 |
| 213 NamingTest: Fail # Issue 356 | 213 NamingTest: Fail # Issue 356 |
| 214 DuplicateImplementsTest: Skip # Issue 976 | 214 DuplicateImplementsTest: Skip # Issue 976 |
| 215 | 215 |
| 216 SavannahTest: Skip # TODO(jimhug): Seems flaky on some configs - investigate. |
| 216 | 217 |
| 217 # VM or DartC specific tests not to be run by Frog. See language.status | 218 # VM or DartC specific tests not to be run by Frog. See language.status |
| 218 *VMTest: Skip | 219 *VMTest: Skip |
| 219 *VMNegativeTest: Skip | 220 *VMNegativeTest: Skip |
| 220 *DartcTest: Skip | 221 *DartcTest: Skip |
| 221 *DartcNegativeTest: Skip | 222 *DartcNegativeTest: Skip |
| 222 # Currently, these patterns skip three tests: | 223 # Currently, these patterns skip three tests: |
| 223 # MathVMTest - correctly skipped as this relies on VM guarantees | 224 # MathVMTest - correctly skipped as this relies on VM guarantees |
| 224 # - should add a version of this with the --enable_type_checks flag | 225 # - should add a version of this with the --enable_type_checks flag |
| 225 # TypeVMTest - correctly skipped as this relies on detailed of TypeError | 226 # TypeVMTest - correctly skipped as this relies on detailed of TypeError |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 # these tests are inconsistent in frogium and frogsh-node, investigate | 373 # these tests are inconsistent in frogium and frogsh-node, investigate |
| 373 StaticField1RunNegativeTest: Pass # but error is not correct | 374 StaticField1RunNegativeTest: Pass # but error is not correct |
| 374 StaticField2RunNegativeTest: Pass # but error is not correct | 375 StaticField2RunNegativeTest: Pass # but error is not correct |
| 375 | 376 |
| 376 | 377 |
| 377 [ $arch == simarm ] | 378 [ $arch == simarm ] |
| 378 *: Skip | 379 *: Skip |
| 379 | 380 |
| 380 [ $arch == arm ] | 381 [ $arch == arm ] |
| 381 *: Skip | 382 *: Skip |
| OLD | NEW |