| 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 10 matching lines...) Expand all Loading... |
| 21 function_type_alias6_test/00: Fail # Issue 11986 | 21 function_type_alias6_test/00: Fail # Issue 11986 |
| 22 function_type_alias9_test/00: Crash # Issue 11986 | 22 function_type_alias9_test/00: Crash # Issue 11986 |
| 23 | 23 |
| 24 [ $compiler == none ] | 24 [ $compiler == none ] |
| 25 mixin_super_constructor_named_test: Fail | 25 mixin_super_constructor_named_test: Fail |
| 26 mixin_super_constructor_positionals_test: Fail | 26 mixin_super_constructor_positionals_test: Fail |
| 27 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 | 27 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 |
| 28 library_juxtaposition_test: Fail # Issue 6877 | 28 library_juxtaposition_test: Fail # Issue 6877 |
| 29 pseudo_kw_illegal_test/14: Fail # Issue 356 | 29 pseudo_kw_illegal_test/14: Fail # Issue 356 |
| 30 bound_closure_equality_test: Fail # Issue 10849 | 30 bound_closure_equality_test: Fail # Issue 10849 |
| 31 switch_int_double_test/01: Fail # Issue 7307 |
| 32 switch_int_double_test/02: Fail # Issue 7307 |
| 31 | 33 |
| 32 # These bugs refer currently ongoing language discussions. | 34 # These bugs refer currently ongoing language discussions. |
| 33 constructor5_test: Fail # (Discussion ongoing) | 35 constructor5_test: Fail # (Discussion ongoing) |
| 34 | 36 |
| 35 constructor_initializer_test: Fail # Side effects in constructor parameters | 37 constructor_initializer_test: Fail # Side effects in constructor parameters |
| 36 | 38 |
| 37 constructor6_test: Fail # Issue 6422 | 39 constructor6_test: Fail # Issue 6422 |
| 38 closure_in_initializer_test: Fail # Issue 6422 | 40 closure_in_initializer_test: Fail # Issue 6422 |
| 39 | 41 |
| 40 # Regular bugs which should be fixed. | 42 # Regular bugs which should be fixed. |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 312 |
| 311 [ $arch == simarm || $arch == arm ] | 313 [ $arch == simarm || $arch == arm ] |
| 312 try_catch4_test: Crash, Fail | 314 try_catch4_test: Crash, Fail |
| 313 | 315 |
| 314 | 316 |
| 315 [ $arch == mips ] | 317 [ $arch == mips ] |
| 316 *: Skip | 318 *: Skip |
| 317 | 319 |
| 318 [ $arch == simmips ] | 320 [ $arch == simmips ] |
| 319 try_catch4_test: Fail | 321 try_catch4_test: Fail |
| OLD | NEW |