| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 [ $component == frogsh || $component == frog || $component == webdriver || $com
ponent == frogium ] | 185 [ $component == frogsh || $component == frog || $component == webdriver || $com
ponent == frogium ] |
| 186 # TODO(efortuna): Distinguish between specific browser being run for webdriver | 186 # TODO(efortuna): Distinguish between specific browser being run for webdriver |
| 187 # (by flag option) to specify which tests pass. | 187 # (by flag option) to specify which tests pass. |
| 188 FactoryNegativeTest: Fail # Issue 417 | 188 FactoryNegativeTest: Fail # Issue 417 |
| 189 Factory3Test: Fail # Issue 417 | 189 Factory3Test: Fail # Issue 417 |
| 190 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 190 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 191 OptimizedSetterTest: Fail # Issue 863 | 191 OptimizedSetterTest: Fail # Issue 863 |
| 192 | 192 |
| 193 FactoryImplementationTest: Fail # Issue 523 | 193 FactoryImplementationTest: Fail # Issue 523 |
| 194 | 194 |
| 195 ClassKeywordNegativeTest/01: Fail # Issue 874 | 195 ClassKeywordTest/01: Fail # Issue 874 |
| 196 | 196 |
| 197 # VM or DartC specific tests not to be run by Frog. See language.status | 197 # VM or DartC specific tests not to be run by Frog. See language.status |
| 198 *VMTest: Skip | 198 *VMTest: Skip |
| 199 *VMNegativeTest: Skip | 199 *VMNegativeTest: Skip |
| 200 *DartcTest: Skip | 200 *DartcTest: Skip |
| 201 *DartcNegativeTest: Skip | 201 *DartcNegativeTest: Skip |
| 202 # Currently, these patterns skip three tests: | 202 # Currently, these patterns skip three tests: |
| 203 # MathVMTest - correctly skipped as this relies on VM guarantees | 203 # MathVMTest - correctly skipped as this relies on VM guarantees |
| 204 # - should add a version of this with the --enable_type_checks flag | 204 # - should add a version of this with the --enable_type_checks flag |
| 205 # TypeVMTest - correctly skipped as this relies on detailed of TypeError | 205 # TypeVMTest - correctly skipped as this relies on detailed of TypeError |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 NumberSyntaxTest: Timeout | 336 NumberSyntaxTest: Timeout |
| 337 | 337 |
| 338 [ $arch == x64 ] | 338 [ $arch == x64 ] |
| 339 *: Skip | 339 *: Skip |
| 340 | 340 |
| 341 [ $arch == simarm ] | 341 [ $arch == simarm ] |
| 342 *: Skip | 342 *: Skip |
| 343 | 343 |
| 344 [ $arch == arm ] | 344 [ $arch == arm ] |
| 345 *: Skip | 345 *: Skip |
| OLD | NEW |