| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 [ $component == frogsh || $component == frog || $component == leg || $component
== webdriver || $component == frogium ] | 189 [ $component == frogsh || $component == frog || $component == leg || $component
== webdriver || $component == frogium ] |
| 190 # TODO(efortuna): Distinguish between specific browser being run for webdriver | 190 # TODO(efortuna): Distinguish between specific browser being run for webdriver |
| 191 # (by flag option) to specify which tests pass. | 191 # (by flag option) to specify which tests pass. |
| 192 FactoryNegativeTest: Fail # Issue 417 | 192 FactoryNegativeTest: Fail # Issue 417 |
| 193 Factory3Test: Fail # Issue 417 |
| 193 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 194 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 194 | 195 |
| 195 FactoryImplementationTest: Fail # Issue 523 | 196 FactoryImplementationTest: Fail # Issue 523 |
| 196 | 197 |
| 197 # VM or DartC specific tests not to be run by Frog. See language.status | 198 # VM or DartC specific tests not to be run by Frog. See language.status |
| 198 *VMTest: Skip | 199 *VMTest: Skip |
| 199 *VMNegativeTest: Skip | 200 *VMNegativeTest: Skip |
| 200 *DartcTest: Skip | 201 *DartcTest: Skip |
| 201 *DartcNegativeTest: Skip | 202 *DartcNegativeTest: Skip |
| 202 # Currently, these patterns skip three tests: | 203 # Currently, these patterns skip three tests: |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 StaticField2RunNegativeTest: Fail | 344 StaticField2RunNegativeTest: Fail |
| 344 | 345 |
| 345 [ $arch == x64 ] | 346 [ $arch == x64 ] |
| 346 *: Skip | 347 *: Skip |
| 347 | 348 |
| 348 [ $arch == simarm ] | 349 [ $arch == simarm ] |
| 349 *: Skip | 350 *: Skip |
| 350 | 351 |
| 351 [ $arch == arm ] | 352 [ $arch == arm ] |
| 352 *: Skip | 353 *: Skip |
| OLD | NEW |