| 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. |
| 11 # | 11 # |
| 12 # 1) Copy the old version of the test to | 12 # 1) Copy the old version of the test to |
| 13 # tests/language/src/test_name_[dartc|vm]_test.dart. | 13 # tests/language/src/test_name_[dartc|vm]_test.dart. |
| 14 # to maintain coverage. | 14 # to maintain coverage. |
| 15 # 2) File a bug on each architecture for the failure due to the language change. | 15 # 2) File a bug on each architecture for the failure due to the language change. |
| 16 # 3) Update the language/src directory with the updated test. | 16 # 3) Update the language/src directory with the updated test. |
| 17 | 17 |
| 18 [ $compiler == dart2dart ] | 18 [ $compiler == dart2dart ] |
| 19 mixin_super_constructor_named_test: Fail | 19 mixin_super_constructor_named_test: Fail |
| 20 mixin_super_constructor_positionals_test: Fail | 20 mixin_super_constructor_positionals_test: Fail |
| 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 library_ambiguous_test/04: Fail # Issue 12105 |
| 23 | 24 |
| 24 [ $compiler == none ] | 25 [ $compiler == none ] |
| 25 mixin_super_constructor_named_test: Fail | 26 mixin_super_constructor_named_test: Fail |
| 26 mixin_super_constructor_positionals_test: Fail | 27 mixin_super_constructor_positionals_test: Fail |
| 27 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 | 28 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 |
| 28 library_juxtaposition_test: Fail # Issue 6877 | 29 library_juxtaposition_test: Fail # Issue 6877 |
| 29 pseudo_kw_illegal_test/14: Fail # Issue 356 | 30 pseudo_kw_illegal_test/14: Fail # Issue 356 |
| 30 bound_closure_equality_test: Fail # Issue 10849 | 31 bound_closure_equality_test: Fail # Issue 10849 |
| 32 library_ambiguous_test/04: Fail # Issue 12105 |
| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 | 365 |
| 364 [ $arch == simarm || $arch == arm ] | 366 [ $arch == simarm || $arch == arm ] |
| 365 try_catch4_test: Crash, Fail | 367 try_catch4_test: Crash, Fail |
| 366 | 368 |
| 367 | 369 |
| 368 [ $arch == mips ] | 370 [ $arch == mips ] |
| 369 *: Skip | 371 *: Skip |
| 370 | 372 |
| 371 [ $arch == simmips ] | 373 [ $arch == simmips ] |
| 372 try_catch4_test: Fail | 374 try_catch4_test: Fail |
| OLD | NEW |