| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 closure_with_super_send_test: Fail # Issue 3197. | 49 closure_with_super_send_test: Fail # Issue 3197. |
| 50 super_closure_test: Fail # Issue 3197. | 50 super_closure_test: Fail # Issue 3197. |
| 51 parameter_initializer6_negative_test: Fail # Issue 3502 | 51 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 52 | 52 |
| 53 prefix_core_test: Fail # Issue 3638. | 53 prefix_core_test: Fail # Issue 3638. |
| 54 | 54 |
| 55 # Issue 2501 | 55 # Issue 2501 |
| 56 cascade_test: Pass,Fail # Some cases pass, but for the wrong reason | 56 cascade_test: Pass,Fail # Some cases pass, but for the wrong reason |
| 57 cascade_precedence_test: Fail | 57 cascade_precedence_test: Fail |
| 58 cascade_in_expression_function_test: Fail #4192 |
| 58 | 59 |
| 59 fauxverride_test/none: Fail # Issue 3778. | 60 fauxverride_test/none: Fail # Issue 3778. |
| 60 | 61 |
| 61 bad_override_test/01: Fail # Issue 3859. | 62 bad_override_test/01: Fail # Issue 3859. |
| 62 bad_override_test/02: Fail # Issue 3859. | 63 bad_override_test/02: Fail # Issue 3859. |
| 63 | 64 |
| 64 # DartC specific tests that should not be run by the VM | 65 # DartC specific tests that should not be run by the VM |
| 65 *dartc_test: Skip | 66 *dartc_test: Skip |
| 66 *dartc_negative_test: Skip | 67 *dartc_negative_test: Skip |
| 67 | 68 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 *: Skip | 142 *: Skip |
| 142 | 143 |
| 143 [ $browser ] | 144 [ $browser ] |
| 144 prefix_core_test: Fail # Issue 2264. | 145 prefix_core_test: Fail # Issue 2264. |
| 145 | 146 |
| 146 [ $arch == simarm ] | 147 [ $arch == simarm ] |
| 147 *: Skip | 148 *: Skip |
| 148 | 149 |
| 149 [ $arch == arm ] | 150 [ $arch == arm ] |
| 150 *: Skip | 151 *: Skip |
| OLD | NEW |