| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 # it will fail on all of these components. | 215 # it will fail on all of these components. |
| 216 # | 216 # |
| 217 # Further explanation: | 217 # Further explanation: |
| 218 # frog: frog compiler, run using the VM | 218 # frog: frog compiler, run using the VM |
| 219 # frogsh: self-hosted frog compiler | 219 # frogsh: self-hosted frog compiler |
| 220 # frogium: Dart code compiled with frog VM running under DumpRenderTree | 220 # frogium: Dart code compiled with frog VM running under DumpRenderTree |
| 221 # webdriver: Dart code compiled with frog VM running on an actual browser | 221 # webdriver: Dart code compiled with frog VM running on an actual browser |
| 222 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular | 222 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular |
| 223 # browser, you can be more specific about the failure by using $browser: | 223 # browser, you can be more specific about the failure by using $browser: |
| 224 # [ $component == webdriver && $browser == chrome ] for example. | 224 # [ $component == webdriver && $browser == chrome ] for example. |
| 225 [ ($component == frog || $component == frogium || $component == webdriver) && $u
nchecked ] | 225 [ ($component == frog || $component == frogsh || $component == frogium || $compo
nent == webdriver) && $unchecked ] |
| 226 BoolTest: Fail # Issue 2092 | 226 BoolTest: Fail # Issue 2092 |
| 227 | 227 |
| 228 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 228 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 229 ExceptionTest: Fail # Issue 1785 | 229 ExceptionTest: Fail # Issue 1785 |
| 230 Factory3Test: Fail # Issue 417 | 230 Factory3Test: Fail # Issue 417 |
| 231 Factory2NegativeTest: Fail | 231 Factory2NegativeTest: Fail |
| 232 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 232 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 233 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. | 233 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| 234 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. | 234 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. |
| 235 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to | 235 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 [ $component == frog && $mode == debug ] | 459 [ $component == frog && $mode == debug ] |
| 460 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 460 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 461 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 461 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 462 | 462 |
| 463 [ $arch == simarm ] | 463 [ $arch == simarm ] |
| 464 *: Skip | 464 *: Skip |
| 465 | 465 |
| 466 [ $arch == arm ] | 466 [ $arch == arm ] |
| 467 *: Skip | 467 *: Skip |
| 468 | 468 |
| OLD | NEW |