| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 [ $component == frog ] | 173 [ $component == frog ] |
| 174 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 174 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 175 | 175 |
| 176 [ $component == frogsh || $component == frog || $component == webdriver || $com
ponent == frogium ] | 176 [ $component == frogsh || $component == frog || $component == webdriver || $com
ponent == frogium ] |
| 177 # TODO(efortuna): Distinguish between specific browser being run for webdriver | 177 # TODO(efortuna): Distinguish between specific browser being run for webdriver |
| 178 # (by flag option) to specify which tests pass. | 178 # (by flag option) to specify which tests pass. |
| 179 Factory3Test: Fail # Issue 417 | 179 Factory3Test: Fail # Issue 417 |
| 180 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 180 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 181 OptimizedSetterTest: Fail # Issue 863 | 181 OptimizedSetterTest: Fail # Issue 863 |
| 182 | 182 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 183 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 184 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 183 FactoryImplementationTest: Fail # Issue 523 | 185 FactoryImplementationTest: Fail # Issue 523 |
| 184 | 186 |
| 185 # VM or DartC specific tests not to be run by Frog. See language.status | 187 # VM or DartC specific tests not to be run by Frog. See language.status |
| 186 *VMTest: Skip | 188 *VMTest: Skip |
| 187 *VMNegativeTest: Skip | 189 *VMNegativeTest: Skip |
| 188 *DartcTest: Skip | 190 *DartcTest: Skip |
| 189 *DartcNegativeTest: Skip | 191 *DartcNegativeTest: Skip |
| 190 # Currently, these patterns skip three tests: | 192 # Currently, these patterns skip three tests: |
| 191 # MathVMTest - correctly skipped as this relies on VM guarantees | 193 # MathVMTest - correctly skipped as this relies on VM guarantees |
| 192 # - should add a version of this with the --enable_type_checks flag | 194 # - should add a version of this with the --enable_type_checks flag |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 | 320 |
| 319 | 321 |
| 320 [ $arch == x64 ] | 322 [ $arch == x64 ] |
| 321 *: Skip | 323 *: Skip |
| 322 | 324 |
| 323 [ $arch == simarm ] | 325 [ $arch == simarm ] |
| 324 *: Skip | 326 *: Skip |
| 325 | 327 |
| 326 [ $arch == arm ] | 328 [ $arch == arm ] |
| 327 *: Skip | 329 *: Skip |
| OLD | NEW |