| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 174 |
| 175 [ $component == frog || $component == leg ] | 175 [ $component == frog || $component == leg ] |
| 176 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 176 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 177 | 177 |
| 178 [ $component == frogsh || $component == frog || $component == leg || $component
== webdriver || $component == frogium ] | 178 [ $component == frogsh || $component == frog || $component == leg || $component
== webdriver || $component == frogium ] |
| 179 # TODO(efortuna): Distinguish between specific browser being run for webdriver | 179 # TODO(efortuna): Distinguish between specific browser being run for webdriver |
| 180 # (by flag option) to specify which tests pass. | 180 # (by flag option) to specify which tests pass. |
| 181 FactoryNegativeTest: Fail # Issue 417 | 181 FactoryNegativeTest: Fail # Issue 417 |
| 182 Factory3Test: Fail # Issue 417 | 182 Factory3Test: Fail # Issue 417 |
| 183 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 183 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 184 OptimizedSetterTest: Fail # Issue 863 |
| 184 | 185 |
| 185 FactoryImplementationTest: Fail # Issue 523 | 186 FactoryImplementationTest: Fail # Issue 523 |
| 186 | 187 |
| 187 # VM or DartC specific tests not to be run by Frog. See language.status | 188 # VM or DartC specific tests not to be run by Frog. See language.status |
| 188 *VMTest: Skip | 189 *VMTest: Skip |
| 189 *VMNegativeTest: Skip | 190 *VMNegativeTest: Skip |
| 190 *DartcTest: Skip | 191 *DartcTest: Skip |
| 191 *DartcNegativeTest: Skip | 192 *DartcNegativeTest: Skip |
| 192 # Currently, these patterns skip three tests: | 193 # Currently, these patterns skip three tests: |
| 193 # MathVMTest - correctly skipped as this relies on VM guarantees | 194 # MathVMTest - correctly skipped as this relies on VM guarantees |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 NativeNamedConstructors2FrogTest: Timeout # ReferenceError: A is not defined. | 345 NativeNamedConstructors2FrogTest: Timeout # ReferenceError: A is not defined. |
| 345 | 346 |
| 346 [ $arch == x64 ] | 347 [ $arch == x64 ] |
| 347 *: Skip | 348 *: Skip |
| 348 | 349 |
| 349 [ $arch == simarm ] | 350 [ $arch == simarm ] |
| 350 *: Skip | 351 *: Skip |
| 351 | 352 |
| 352 [ $arch == arm ] | 353 [ $arch == arm ] |
| 353 *: Skip | 354 *: Skip |
| OLD | NEW |