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