| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 [ $compiler == none && $mode == debug ] | 68 [ $compiler == none && $mode == debug ] |
| 69 gc_test: Skip # Takes too long. | 69 gc_test: Skip # Takes too long. |
| 70 | 70 |
| 71 [ $compiler == dartc ] | 71 [ $compiler == dartc ] |
| 72 application_negative_test: Fail # Runtime only test, rewrite as multitest | 72 application_negative_test: Fail # Runtime only test, rewrite as multitest |
| 73 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest | 73 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest |
| 74 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest | 74 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest |
| 75 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest | 75 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest |
| 76 call_operator_test: Pass # Issue 1355 | 76 call_operator_test: Pass # Issue 1355 |
| 77 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason | 77 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason |
| 78 cascade_precedence_test: Fail # Issue 3729 | |
| 79 char_escape_test: Pass # Issue 1654 | 78 char_escape_test: Pass # Issue 1654 |
| 80 closure_call_wrong_argument_count_negative_test: Fail # Runtime only test, rewri
te as multitest | 79 closure_call_wrong_argument_count_negative_test: Fail # Runtime only test, rewri
te as multitest |
| 81 const_syntax_test/01: Fail # test issue 3626 | 80 const_syntax_test/01: Fail # test issue 3626 |
| 82 const_syntax_test/02: Fail # test issue 3626 | 81 const_syntax_test/02: Fail # test issue 3626 |
| 83 const_syntax_test/03: Fail # test issue 3626 | 82 const_syntax_test/03: Fail # test issue 3626 |
| 84 constructor3_negative_test: Fail # Runtime only test, rewrite as multitest | 83 constructor3_negative_test: Fail # Runtime only test, rewrite as multitest |
| 85 constructor_call_wrong_argument_count_negative_test: Fail # Runtime only test, r
ewrite as multitest | 84 constructor_call_wrong_argument_count_negative_test: Fail # Runtime only test, r
ewrite as multitest |
| 86 disable_privacy_test: Skip # Issue 1882: Needs --disable_privacy support. | 85 disable_privacy_test: Skip # Issue 1882: Needs --disable_privacy support. |
| 87 duplicate_implements_test: Skip # Issue 976 | 86 duplicate_implements_test: Skip # Issue 976 |
| 88 factory5_test/00: Fail # issue 3079 | 87 factory5_test/00: Fail # issue 3079 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 *: Skip | 140 *: Skip |
| 142 | 141 |
| 143 [ $browser ] | 142 [ $browser ] |
| 144 prefix_core_test: Fail # Issue 2264. | 143 prefix_core_test: Fail # Issue 2264. |
| 145 | 144 |
| 146 [ $arch == simarm ] | 145 [ $arch == simarm ] |
| 147 *: Skip | 146 *: Skip |
| 148 | 147 |
| 149 [ $arch == arm ] | 148 [ $arch == arm ] |
| 150 *: Skip | 149 *: Skip |
| OLD | NEW |