| 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, | |
| 9 # please use the following procedure to mark a test | |
| 10 # failed on architectures other than the one you are working on. | |
| 11 # | |
| 12 # 1) Copy the old version of the test to | |
| 13 # tests/language/src/test_name_[dartc|vm]_test.dart. | |
| 14 # to maintain coverage. | |
| 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. | |
| 17 | |
| 18 [ $compiler == dart2js && ($runtime == ie9 || $runtime == ie10) ] | 8 [ $compiler == dart2js && ($runtime == ie9 || $runtime == ie10) ] |
| 19 licm2_test: Skip # Issue: 12298 | 9 licm2_test: Skip # Issue: 12298 |
| 20 | 10 |
| 21 [ $compiler == dart2dart ] | 11 [ $compiler == dart2dart ] |
| 22 mixin_super_constructor_named_test: Fail | 12 mixin_super_constructor_named_test: Fail |
| 23 mixin_super_constructor_positionals_test: Fail | 13 mixin_super_constructor_positionals_test: Fail |
| 24 function_type_alias6_test/00: Fail # Issue 11986 | 14 function_type_alias6_test/00: Fail # Issue 11986 |
| 25 function_type_alias9_test/00: Crash # Issue 11986 | 15 function_type_alias9_test/00: Crash # Issue 11986 |
| 26 | 16 |
| 27 [ $compiler == none ] | 17 [ $compiler == none ] |
| (...skipping 16 matching lines...) Expand all Loading... |
| 44 # Regular bugs which should be fixed. | 34 # Regular bugs which should be fixed. |
| 45 const_init6_negative_test: Fail # Issue 811 | 35 const_init6_negative_test: Fail # Issue 811 |
| 46 super_first_constructor_test: Fail # Issue 1372. | 36 super_first_constructor_test: Fail # Issue 1372. |
| 47 | 37 |
| 48 parameter_initializer6_negative_test: Fail # Issue 3502 | 38 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 49 | 39 |
| 50 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 40 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| 51 | 41 |
| 52 lazy_static3_test: Fail # Issue 3558 | 42 lazy_static3_test: Fail # Issue 3558 |
| 53 | 43 |
| 54 # DartC specific tests that should not be run by the VM | |
| 55 *dartc_test: Skip | |
| 56 *dartc_negative_test: Skip | |
| 57 | |
| 58 compile_time_constant10_test/none: Fail # issue 5214 | 44 compile_time_constant10_test/none: Fail # issue 5214 |
| 59 | 45 |
| 60 export_cyclic_test: Fail, Crash # issue 6060 | 46 export_cyclic_test: Fail, Crash # issue 6060 |
| 61 duplicate_export_negative_test: Fail # issue 6134 | 47 duplicate_export_negative_test: Fail # issue 6134 |
| 62 type_annotation_test/04: Fail # Issue 6970 | 48 type_annotation_test/04: Fail # Issue 6970 |
| 63 type_annotation_test/06: Fail # Issue 6973 | 49 type_annotation_test/06: Fail # Issue 6973 |
| 64 type_annotation_test/09: Fail # Issue 6973 | 50 type_annotation_test/09: Fail # Issue 6973 |
| 65 | 51 |
| 66 on_catch_malformed_type_test: Fail # Issue 8601 | 52 on_catch_malformed_type_test: Fail # Issue 8601 |
| 67 | 53 |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 super_call4_test: Fail, OK # hardcoded names. | 287 super_call4_test: Fail, OK # hardcoded names. |
| 302 | 288 |
| 303 [ $compiler == dart2js || $compiler == dart2dart] | 289 [ $compiler == dart2js || $compiler == dart2dart] |
| 304 null_test/03: Fail # Issue 12445. | 290 null_test/03: Fail # Issue 12445. |
| 305 | 291 |
| 306 [ $compiler == dart2js ] | 292 [ $compiler == dart2js ] |
| 307 null_test/none: Fail # Issue 12482 | 293 null_test/none: Fail # Issue 12482 |
| 308 | 294 |
| 309 [ $compiler == dartanalyzer ] | 295 [ $compiler == dartanalyzer ] |
| 310 null_test/03: Fail # Issue 12484 | 296 null_test/03: Fail # Issue 12484 |
| OLD | NEW |