| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 195 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 196 | 196 |
| 197 [ $component == frogsh || $component == frog || ($component == webdriver && $br
owser == chrome) || $component == frogium ] | 197 [ $component == frogsh || $component == frog || ($component == webdriver && $br
owser == chrome) || $component == frogium ] |
| 198 Factory3Test: Fail # Issue 417 | 198 Factory3Test: Fail # Issue 417 |
| 199 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 199 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 200 OptimizedSetterTest: Fail # Issue 863 | 200 OptimizedSetterTest: Fail # Issue 863 |
| 201 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 201 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 202 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 202 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 203 ImplementTypeParameterNegativeTest: Skip # Issue 887 | 203 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 204 FactoryImplementationTest: Fail # Issue 523 | 204 FactoryImplementationTest: Fail # Issue 523 |
| 205 PseudoKWTest: Fail |
| 206 NamingTest: Fail |
| 205 | 207 |
| 206 # VM or DartC specific tests not to be run by Frog. See language.status | 208 # VM or DartC specific tests not to be run by Frog. See language.status |
| 207 *VMTest: Skip | 209 *VMTest: Skip |
| 208 *VMNegativeTest: Skip | 210 *VMNegativeTest: Skip |
| 209 *DartcTest: Skip | 211 *DartcTest: Skip |
| 210 *DartcNegativeTest: Skip | 212 *DartcNegativeTest: Skip |
| 211 # Currently, these patterns skip three tests: | 213 # Currently, these patterns skip three tests: |
| 212 # MathVMTest - correctly skipped as this relies on VM guarantees | 214 # MathVMTest - correctly skipped as this relies on VM guarantees |
| 213 # - should add a version of this with the --enable_type_checks flag | 215 # - should add a version of this with the --enable_type_checks flag |
| 214 # TypeVMTest - correctly skipped as this relies on detailed of TypeError | 216 # TypeVMTest - correctly skipped as this relies on detailed of TypeError |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 | 348 |
| 347 | 349 |
| 348 [ $arch == x64 ] | 350 [ $arch == x64 ] |
| 349 *: Skip | 351 *: Skip |
| 350 | 352 |
| 351 [ $arch == simarm ] | 353 [ $arch == simarm ] |
| 352 *: Skip | 354 *: Skip |
| 353 | 355 |
| 354 [ $arch == arm ] | 356 [ $arch == arm ] |
| 355 *: Skip | 357 *: Skip |
| OLD | NEW |