| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 [ $component == frog ] | 282 [ $component == frog ] |
| 283 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 283 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 284 | 284 |
| 285 # This set of four test components (frog, frogsh, frogium, and webdriver) all | 285 # This set of four test components (frog, frogsh, frogium, and webdriver) all |
| 286 # consume frog output, so if frog is generating the incorrect code, chances are | 286 # consume frog output, so if frog is generating the incorrect code, chances are |
| 287 # it will fail on all of these components. | 287 # it will fail on all of these components. |
| 288 # | 288 # |
| 289 # Further explanation: | 289 # Further explanation: |
| 290 # frog: frog compiler, run using the VM | 290 # frog: frog compiler, run using the VM |
| 291 # frogsh: self-hosted frog compiler | 291 # frogsh: self-hosted frog compiler |
| 292 # frogium: Dart code compiled with frogsh running under DumpRenderTree | 292 # frogium: Dart code compiled with frog VM running under DumpRenderTree |
| 293 # webdriver: Dart code compiled with frogsh running on an actual browser | 293 # webdriver: Dart code compiled with frog VM running on an actual browser |
| 294 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular | 294 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular |
| 295 # browser, you can be more specific about the failure by using $browser: | 295 # browser, you can be more specific about the failure by using $browser: |
| 296 # [ $component == webdriver && $browser == chrome ] for example. | 296 # [ $component == webdriver && $browser == chrome ] for example. |
| 297 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 297 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 298 Factory3Test: Fail # Issue 417 | 298 Factory3Test: Fail # Issue 417 |
| 299 Factory2NegativeTest: Fail | 299 Factory2NegativeTest: Fail |
| 300 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 300 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 301 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 301 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 302 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 302 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 303 GetSetSyntaxTest/00: Fail # Issue 1571 | 303 GetSetSyntaxTest/00: Fail # Issue 1571 |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 [ $component == frog && $mode == debug ] | 527 [ $component == frog && $mode == debug ] |
| 528 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 528 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 529 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 529 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 530 | 530 |
| 531 [ $arch == simarm ] | 531 [ $arch == simarm ] |
| 532 *: Skip | 532 *: Skip |
| 533 | 533 |
| 534 [ $arch == arm ] | 534 [ $arch == arm ] |
| 535 *: Skip | 535 *: Skip |
| 536 | 536 |
| OLD | NEW |