| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 ConstInit6NegativeTest: Fail # Issue 811 | 46 ConstInit6NegativeTest: Fail # Issue 811 |
| 47 | 47 |
| 48 # Issue 905. | 48 # Issue 905. |
| 49 TypeVariableBoundsTest/01: Fail | 49 TypeVariableBoundsTest/01: Fail |
| 50 TypeVariableBoundsTest/02: Fail | 50 TypeVariableBoundsTest/02: Fail |
| 51 TypeVariableBoundsTest/05: Fail | 51 TypeVariableBoundsTest/05: Fail |
| 52 TypeVariableBoundsTest/06: Fail | 52 TypeVariableBoundsTest/06: Fail |
| 53 TypeVariableBoundsTest/09: Fail | 53 TypeVariableBoundsTest/09: Fail |
| 54 TypeVariableBoundsTest/10: Fail | 54 TypeVariableBoundsTest/10: Fail |
| 55 | 55 |
| 56 # Issue 1350. | |
| 57 StringEscape1NegativeTest: Fail | |
| 58 StringEscape4NegativeTest: Fail | |
| 59 | |
| 60 SuperFirstConstructorTest: Fail # Issue 1372. | 56 SuperFirstConstructorTest: Fail # Issue 1372. |
| 61 | 57 |
| 62 # Issue 1427 | 58 # Issue 1427 |
| 63 CyclicTypeVariableTest: Fail | 59 CyclicTypeVariableTest: Fail |
| 64 CyclicTypeVariableTest/01: Fail | 60 CyclicTypeVariableTest/01: Fail |
| 65 CyclicTypeVariableTest/02: Fail | 61 CyclicTypeVariableTest/02: Fail |
| 66 CyclicTypeVariableTest/03: Fail | 62 CyclicTypeVariableTest/03: Fail |
| 67 CyclicTypeVariableTest/04: Fail | 63 CyclicTypeVariableTest/04: Fail |
| 68 CyclicTypeVariableTest/05: Fail | 64 CyclicTypeVariableTest/05: Fail |
| 69 | 65 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 227 |
| 232 [ $component == frogsh || $component == webdriver || $component == frogium ] | 228 [ $component == frogsh || $component == webdriver || $component == frogium ] |
| 233 IntrinsifiedMethodsTest: Fail # Issue 1470 | 229 IntrinsifiedMethodsTest: Fail # Issue 1470 |
| 234 ArithmeticTest: Fail # Issue 1470 | 230 ArithmeticTest: Fail # Issue 1470 |
| 235 | 231 |
| 236 [ $component == frog ] | 232 [ $component == frog ] |
| 237 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 233 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 238 | 234 |
| 239 # This set of four test components (frog, frogsh, frogium, and webdriver) all | 235 # This set of four test components (frog, frogsh, frogium, and webdriver) all |
| 240 # consume frog output, so if frog is generating the incorrect code, chances are | 236 # consume frog output, so if frog is generating the incorrect code, chances are |
| 241 # it will fail on all of these components. | 237 # it will fail on all of these components. |
| 242 # | 238 # |
| 243 # Further explanation: | 239 # Further explanation: |
| 244 # frog: frog compiler, run using the VM | 240 # frog: frog compiler, run using the VM |
| 245 # frogsh: self-hosted frog compiler | 241 # frogsh: self-hosted frog compiler |
| 246 # frogium: Dart code compiled with frogsh running under DumpRenderTree | 242 # frogium: Dart code compiled with frogsh running under DumpRenderTree |
| 247 # webdriver: Dart code compiled with frogsh running on an actual browser | 243 # webdriver: Dart code compiled with frogsh running on an actual browser |
| 248 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular | 244 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular |
| 249 # browser, you can be more specific about the failure by using $browser: | 245 # browser, you can be more specific about the failure by using $browser: |
| 250 # [ $component == webdriver && $browser == chrome ] for example. | 246 # [ $component == webdriver && $browser == chrome ] for example. |
| 251 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 247 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 252 Factory3Test: Fail # Issue 417 | 248 Factory3Test: Fail # Issue 417 |
| 253 Factory2NegativeTest: Fail | 249 Factory2NegativeTest: Fail |
| 254 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 250 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 255 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 251 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 256 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 252 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 257 GetSetSyntaxTest/00: Fail # Issue 1571 | 253 GetSetSyntaxTest/00: Fail # Issue 1571 |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 | 473 |
| 478 [ $component == frog && $mode == debug ] | 474 [ $component == frog && $mode == debug ] |
| 479 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 475 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 480 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 476 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 481 | 477 |
| 482 [ $arch == simarm ] | 478 [ $arch == simarm ] |
| 483 *: Skip | 479 *: Skip |
| 484 | 480 |
| 485 [ $arch == arm ] | 481 [ $arch == arm ] |
| 486 *: Skip | 482 *: Skip |
| OLD | NEW |