| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 [ $component == dartium ] | 199 [ $component == dartium ] |
| 200 # TODO: These need to be retriaged. | 200 # TODO: These need to be retriaged. |
| 201 DisablePrivacyTest: Skip | 201 DisablePrivacyTest: Skip |
| 202 RichardsTest: Fail | 202 RichardsTest: Fail |
| 203 StringEscape1NegativeTest: Skip | 203 StringEscape1NegativeTest: Skip |
| 204 GCTest: Skip # Issue 1487 | 204 GCTest: Skip # Issue 1487 |
| 205 | 205 |
| 206 | 206 |
| 207 [ $component == frogsh ] | 207 [ $component == frogsh ] |
| 208 ArithmeticTest: Fail # Issue 1470 |
| 209 AssignStaticTypeTest/01: Fail # Unrecognized option: --no-enable-type-checks. |
| 210 AssignStaticTypeTest/02: Fail # Unrecognized option: --no-enable-type-checks. |
| 211 AssignStaticTypeTest/03: Fail # Unrecognized option: --no-enable-type-checks. |
| 212 AssignStaticTypeTest/04: Fail # Unrecognized option: --no-enable-type-checks. |
| 208 IntrinsifiedMethodsTest: Fail # Issue 1470 | 213 IntrinsifiedMethodsTest: Fail # Issue 1470 |
| 209 ArithmeticTest: Fail # Issue 1470 | |
| 210 | 214 |
| 211 # This set of four test components (frog, frogsh, frogium, and webdriver) all | 215 # This set of four test components (frog, frogsh, frogium, and webdriver) all |
| 212 # consume frog output, so if frog is generating the incorrect code, chances are | 216 # consume frog output, so if frog is generating the incorrect code, chances are |
| 213 # it will fail on all of these components. | 217 # it will fail on all of these components. |
| 214 # | 218 # |
| 215 # Further explanation: | 219 # Further explanation: |
| 216 # frog: frog compiler, run using the VM | 220 # frog: frog compiler, run using the VM |
| 217 # frogsh: self-hosted frog compiler | 221 # frogsh: self-hosted frog compiler |
| 218 # frogium: Dart code compiled with frog VM running under DumpRenderTree | 222 # frogium: Dart code compiled with frog VM running under DumpRenderTree |
| 219 # webdriver: Dart code compiled with frog VM running on an actual browser | 223 # webdriver: Dart code compiled with frog VM running on an actual browser |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 [ $component == frog && $mode == debug ] | 454 [ $component == frog && $mode == debug ] |
| 451 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 455 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 452 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 456 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 453 | 457 |
| 454 [ $arch == simarm ] | 458 [ $arch == simarm ] |
| 455 *: Skip | 459 *: Skip |
| 456 | 460 |
| 457 [ $arch == arm ] | 461 [ $arch == arm ] |
| 458 *: Skip | 462 *: Skip |
| 459 | 463 |
| OLD | NEW |