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 17 matching lines...) Expand all Loading... |
28 extends_test: Fail # issue 11023 | 28 extends_test: Fail # issue 11023 |
29 mixin_super_constructor_test: Fail | 29 mixin_super_constructor_test: Fail |
30 mixin_super_constructor2_test: Fail | 30 mixin_super_constructor2_test: Fail |
31 mixin_super_constructor_default_test: Fail | 31 mixin_super_constructor_default_test: Fail |
32 mixin_super_constructor_named_test: Fail | 32 mixin_super_constructor_named_test: Fail |
33 mixin_super_constructor_positionals_test: Fail | 33 mixin_super_constructor_positionals_test: Fail |
34 mixin_super_constructor_multiple_test: Fail | 34 mixin_super_constructor_multiple_test: Fail |
35 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 | 35 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 |
36 library_juxtaposition_test: Fail # Issue 6877 | 36 library_juxtaposition_test: Fail # Issue 6877 |
37 pseudo_kw_illegal_test/14: Fail # Issue 356 | 37 pseudo_kw_illegal_test/14: Fail # Issue 356 |
38 method_override2_test/00: Fail # Issue 7076. | |
39 method_override2_test/02: Fail # Issue 7076. | |
40 method_override2_test/03: Fail # Issue 7076. | |
41 bound_closure_equality_test: Fail # Issue 10849 | 38 bound_closure_equality_test: Fail # Issue 10849 |
42 | 39 |
43 # These bugs refer currently ongoing language discussions. | 40 # These bugs refer currently ongoing language discussions. |
44 constructor5_test: Fail # (Discussion ongoing) | 41 constructor5_test: Fail # (Discussion ongoing) |
45 | 42 |
46 constructor_initializer_test: Fail # Side effects in constructor parameters | 43 constructor_initializer_test: Fail # Side effects in constructor parameters |
47 | 44 |
48 constructor6_test: Fail # Issue 6422 | 45 constructor6_test: Fail # Issue 6422 |
49 closure_in_initializer_test: Fail # Issue 6422 | 46 closure_in_initializer_test: Fail # Issue 6422 |
50 | 47 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 pseudo_kw_test: Fail | 216 pseudo_kw_test: Fail |
220 # external keyword is not yet supported by dart2js/dart2dart. | 217 # external keyword is not yet supported by dart2js/dart2dart. |
221 external_test/*: Skip | 218 external_test/*: Skip |
222 lazy_static3_test: Fail, OK # Issue 3558 | 219 lazy_static3_test: Fail, OK # Issue 3558 |
223 # dart2js frontend doesn't even analyse problematic classes. | 220 # dart2js frontend doesn't even analyse problematic classes. |
224 duplicate_implements_test/01: Fail | 221 duplicate_implements_test/01: Fail |
225 duplicate_implements_test/02: Fail | 222 duplicate_implements_test/02: Fail |
226 duplicate_implements_test/03: Fail | 223 duplicate_implements_test/03: Fail |
227 duplicate_implements_test/04: Fail | 224 duplicate_implements_test/04: Fail |
228 interface_factory_constructor_negative_test: Fail | 225 interface_factory_constructor_negative_test: Fail |
229 method_override2_test/00: Fail | |
230 method_override2_test/02: Fail | |
231 method_override2_test/03: Fail | |
232 method_override4_test: Fail | 226 method_override4_test: Fail |
233 method_override5_test: Fail | 227 method_override5_test: Fail |
234 operator1_negative_test: Fail | 228 operator1_negative_test: Fail |
235 static_final_field_negative_test: Fail | 229 static_final_field_negative_test: Fail |
236 static_top_level_test/00: Fail | 230 static_top_level_test/00: Fail |
237 static_top_level_test/01: Fail | 231 static_top_level_test/01: Fail |
238 static_top_level_test/02: Fail | 232 static_top_level_test/02: Fail |
239 static_top_level_test/03: Fail | 233 static_top_level_test/03: Fail |
240 static_top_level_test/04: Fail | 234 static_top_level_test/04: Fail |
241 static_top_level_test/05: Fail | 235 static_top_level_test/05: Fail |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 [ $arch == mips ] | 324 [ $arch == mips ] |
331 *: Skip | 325 *: Skip |
332 | 326 |
333 | 327 |
334 [ $arch == simmips ] | 328 [ $arch == simmips ] |
335 arithmetic_test: Crash # Too far relative branch. | 329 arithmetic_test: Crash # Too far relative branch. |
336 large_implicit_getter_test: Crash # Too far relative branch. | 330 large_implicit_getter_test: Crash # Too far relative branch. |
337 # TODO(zra): Check to see if the ASSERT that fails in debug mode is correct | 331 # TODO(zra): Check to see if the ASSERT that fails in debug mode is correct |
338 stack_overflow_test: Crash, Pass # Passes in release mode. | 332 stack_overflow_test: Crash, Pass # Passes in release mode. |
339 stack_overflow_stacktrace_test: Crash, Pass # Passes in release mode. | 333 stack_overflow_stacktrace_test: Crash, Pass # Passes in release mode. |
OLD | NEW |