| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 UnboundGetterTest: Fail | 179 UnboundGetterTest: Fail |
| 180 Private2Test: Fail | 180 Private2Test: Fail |
| 181 Private3Test: Fail | 181 Private3Test: Fail |
| 182 | 182 |
| 183 TypedMessageTest: Fail # Bug 5246195 | 183 TypedMessageTest: Fail # Bug 5246195 |
| 184 | 184 |
| 185 | 185 |
| 186 [ $component == frog || $component == leg ] | 186 [ $component == frog || $component == leg ] |
| 187 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 187 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 188 | 188 |
| 189 |
| 189 [ $component == frogsh || $component == frog || $component == leg ] | 190 [ $component == frogsh || $component == frog || $component == leg ] |
| 190 | 191 |
| 191 # VM or DartC specific tests not to be run by Frog. See language.status | 192 # VM or DartC specific tests not to be run by Frog. See language.status |
| 192 *VMTest: Skip | 193 *VMTest: Skip |
| 193 *VMNegativeTest: Skip | 194 *VMNegativeTest: Skip |
| 194 *DartcTest: Skip | 195 *DartcTest: Skip |
| 195 *DartcNegativeTest: Skip | 196 *DartcNegativeTest: Skip |
| 196 # Currently, these patterns skip three tests: | 197 # Currently, these patterns skip three tests: |
| 197 # MathVMTest - correctly skipped as this relies on VM guarantees | 198 # MathVMTest - correctly skipped as this relies on VM guarantees |
| 198 # - should add a version of this with the --enable_type_checks flag | 199 # - should add a version of this with the --enable_type_checks flag |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 DoubleComparisonTest: Fail | 331 DoubleComparisonTest: Fail |
| 331 | 332 |
| 332 [ $arch == x64 ] | 333 [ $arch == x64 ] |
| 333 *: Skip | 334 *: Skip |
| 334 | 335 |
| 335 [ $arch == simarm ] | 336 [ $arch == simarm ] |
| 336 *: Skip | 337 *: Skip |
| 337 | 338 |
| 338 [ $arch == arm ] | 339 [ $arch == arm ] |
| 339 *: Skip | 340 *: Skip |
| OLD | NEW |