| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 == frogsh || $component == frogium || $compo
nent == webdriver) && $unchecked ] | 225 [ ($component == frog || $component == frogsh || $component == frogium || $compo
nent == webdriver) && $unchecked ] |
| 226 BoolTest: Fail # Issue 2092 | 226 BoolTest: Fail # Issue 2092 |
| 227 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. |
| 227 | 228 |
| 228 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 229 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 229 ExceptionTest: Fail # Issue 1785 | 230 ExceptionTest: Fail # Issue 1785 |
| 230 Factory3Test: Fail # Issue 417 | 231 Factory3Test: Fail # Issue 417 |
| 231 Factory2NegativeTest: Fail | 232 Factory2NegativeTest: Fail |
| 232 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 233 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 233 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. | |
| 234 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. | 234 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. |
| 235 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. | 235 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| 236 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. | 236 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. |
| 237 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to | 237 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to |
| 238 # be moved to a | 238 # be moved to a |
| 239 # [ $component == frog || $component == frogium || $component == webdriver ] | 239 # [ $component == frog || $component == frogium || $component == webdriver ] |
| 240 # section. | 240 # section. |
| 241 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. | 241 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. |
| 242 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. | 242 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. |
| 243 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 243 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 [ $component == frog && $mode == debug ] | 461 [ $component == frog && $mode == debug ] |
| 462 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 462 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 463 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 463 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 464 | 464 |
| 465 [ $arch == simarm ] | 465 [ $arch == simarm ] |
| 466 *: Skip | 466 *: Skip |
| 467 | 467 |
| 468 [ $arch == arm ] | 468 [ $arch == arm ] |
| 469 *: Skip | 469 *: Skip |
| 470 | 470 |
| OLD | NEW |