| 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 library_ambiguous_test/04: Fail # Issue 12105 |
| 24 symbol_literal_test: Fail # Issue 12171 |
| 24 | 25 |
| 25 [ $compiler == none ] | 26 [ $compiler == none ] |
| 26 mixin_super_constructor_named_test: Fail | 27 mixin_super_constructor_named_test: Fail |
| 27 mixin_super_constructor_positionals_test: Fail | 28 mixin_super_constructor_positionals_test: Fail |
| 28 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 | 29 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 |
| 29 library_juxtaposition_test: Fail # Issue 6877 | 30 library_juxtaposition_test: Fail # Issue 6877 |
| 30 pseudo_kw_illegal_test/14: Fail # Issue 356 | 31 pseudo_kw_illegal_test/14: Fail # Issue 356 |
| 31 bound_closure_equality_test: Fail # Issue 10849 | 32 bound_closure_equality_test: Fail # Issue 10849 |
| 32 library_ambiguous_test/04: Fail # Issue 12105 | 33 library_ambiguous_test/04: Fail # Issue 12105 |
| 34 symbol_literal_test: Fail # Issue 12171 |
| 33 | 35 |
| 34 # These bugs refer currently ongoing language discussions. | 36 # These bugs refer currently ongoing language discussions. |
| 35 constructor5_test: Fail # (Discussion ongoing) | 37 constructor5_test: Fail # (Discussion ongoing) |
| 36 | 38 |
| 37 constructor_initializer_test: Fail # Side effects in constructor parameters | 39 constructor_initializer_test: Fail # Side effects in constructor parameters |
| 38 | 40 |
| 39 constructor6_test: Fail # Issue 6422 | 41 constructor6_test: Fail # Issue 6422 |
| 40 closure_in_initializer_test: Fail # Issue 6422 | 42 closure_in_initializer_test: Fail # Issue 6422 |
| 41 | 43 |
| 42 # Regular bugs which should be fixed. | 44 # Regular bugs which should be fixed. |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 | 367 |
| 366 [ $arch == simarm || $arch == arm ] | 368 [ $arch == simarm || $arch == arm ] |
| 367 try_catch4_test: Crash, Fail | 369 try_catch4_test: Crash, Fail |
| 368 | 370 |
| 369 | 371 |
| 370 [ $arch == mips ] | 372 [ $arch == mips ] |
| 371 *: Skip | 373 *: Skip |
| 372 | 374 |
| 373 [ $arch == simmips ] | 375 [ $arch == simmips ] |
| 374 try_catch4_test: Fail | 376 try_catch4_test: Fail |
| OLD | NEW |