| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 const_constructor_syntax_test/05: Fail | 45 const_constructor_syntax_test/05: Fail |
| 46 | 46 |
| 47 constructor_redirect_test/01: Fail # Issue 2103. | 47 constructor_redirect_test/01: Fail # Issue 2103. |
| 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 | |
| 56 cascade_test: Pass,Fail # Some cases pass, but for the wrong reason | |
| 57 cascade_precedence_test: Fail | |
| 58 cascade_in_expression_function_test: Fail # Issue 4192 | |
| 59 | |
| 60 fauxverride_test/none: Fail # Issue 3778. | 55 fauxverride_test/none: Fail # Issue 3778. |
| 61 | 56 |
| 62 bad_override_test/01: Fail # Issue 3859. | 57 bad_override_test/01: Fail # Issue 3859. |
| 63 bad_override_test/02: Fail # Issue 3859. | 58 bad_override_test/02: Fail # Issue 3859. |
| 64 | 59 |
| 65 # DartC specific tests that should not be run by the VM | 60 # DartC specific tests that should not be run by the VM |
| 66 *dartc_test: Skip | 61 *dartc_test: Skip |
| 67 *dartc_negative_test: Skip | 62 *dartc_negative_test: Skip |
| 68 | 63 |
| 69 [ $compiler == none && $mode == debug ] | 64 [ $compiler == none && $mode == debug ] |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 *: Skip | 137 *: Skip |
| 143 | 138 |
| 144 [ $browser ] | 139 [ $browser ] |
| 145 prefix_core_test: Fail # Issue 2264. | 140 prefix_core_test: Fail # Issue 2264. |
| 146 | 141 |
| 147 [ $arch == simarm ] | 142 [ $arch == simarm ] |
| 148 *: Skip | 143 *: Skip |
| 149 | 144 |
| 150 [ $arch == arm ] | 145 [ $arch == arm ] |
| 151 *: Skip | 146 *: Skip |
| OLD | NEW |