| 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 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 # Issue 1355 | 42 # Issue 1355 |
| 43 call_operator_test: Fail | 43 call_operator_test: Fail |
| 44 | 44 |
| 45 const_constructor_syntax_test/05: Fail | 45 const_constructor_syntax_test/05: Fail |
| 46 | 46 |
| 47 constructor_redirect_test/01: Fail # Issue 2103. | 47 constructor_redirect_test/01: Fail # Issue 2103. |
| 48 | 48 |
| 49 closure_with_super_send_test: Fail # Issue 3197. | 49 closure_with_super_send_test: Fail # Issue 3197. |
| 50 super_closure_test: Fail # Issue 3197. | 50 super_closure_test: Fail # Issue 3197. |
| 51 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 51 | 52 |
| 52 # DartC or Frog specific tests that should not be run by the VM | 53 # DartC or Frog specific tests that should not be run by the VM |
| 53 *dartc_test: Skip | 54 *dartc_test: Skip |
| 54 *dartc_negative_test: Skip | 55 *dartc_negative_test: Skip |
| 55 *frog_test: Skip | 56 *frog_test: Skip |
| 56 *frog_negative_test: Skip | 57 *frog_negative_test: Skip |
| 57 | 58 |
| 58 [ $compiler == none && $mode == debug ] | 59 [ $compiler == none && $mode == debug ] |
| 59 gc_test: Skip # Takes too long. | 60 gc_test: Skip # Takes too long. |
| 60 | 61 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 88 function_type_alias5_test/02: Fail # Legally self referencing typedef | 89 function_type_alias5_test/02: Fail # Legally self referencing typedef |
| 89 function_type_alias_negative_test: Fail # Bug 5231617. | 90 function_type_alias_negative_test: Fail # Bug 5231617. |
| 90 generic_parameterized_extends_test: Skip # Bug 5392297 | 91 generic_parameterized_extends_test: Skip # Bug 5392297 |
| 91 getters_setters_type3_test: Fail # Issue 2351 | 92 getters_setters_type3_test: Fail # Issue 2351 |
| 92 instance_call_wrong_argument_count_negative_test: Fail | 93 instance_call_wrong_argument_count_negative_test: Fail |
| 93 instanceof3_test: Fail # Issue 2571 | 94 instanceof3_test: Fail # Issue 2571 |
| 94 library4_negative_test: Fail # Bug 5406175 | 95 library4_negative_test: Fail # Bug 5406175 |
| 95 list_literal4_test: Fail # Issue 1343 | 96 list_literal4_test: Fail # Issue 1343 |
| 96 map_literal4_test: Fail # Issue 1343 | 97 map_literal4_test: Fail # Issue 1343 |
| 97 named_parameters_negative_test: Fail | 98 named_parameters_negative_test: Fail |
| 99 named_parameters_with_object_property_names_test: Fail # Issue 2137 |
| 98 no_such_method_negative_test: Fail | 100 no_such_method_negative_test: Fail |
| 99 override_field_test/04: Fail # Bug 5215249 | 101 override_field_test/04: Fail # Bug 5215249 |
| 100 private_factory_resolution_negative_test: Fail # Issue 2275 | 102 private_factory_resolution_negative_test: Fail # Issue 2275 |
| 101 private_member3_negative_test: Fail # Issue 2383 | 103 private_member3_negative_test: Fail # Issue 2383 |
| 102 pseudo_kw_illegal_test/08: Fail # Issue 356 | 104 pseudo_kw_illegal_test/08: Fail # Issue 356 |
| 103 pseudo_kw_illegal_test/10: Fail # Issue 356 | 105 pseudo_kw_illegal_test/10: Fail # Issue 356 |
| 104 pseudo_kw_illegal_test/14: Fail # Issue 356 | 106 pseudo_kw_illegal_test/14: Fail # Issue 356 |
| 105 pseudo_kw_test: Fail # Issue 356 | 107 pseudo_kw_test: Fail # Issue 356 |
| 106 scope_negative_test: Fail # Bug 4207538. | 108 scope_negative_test: Fail # Bug 4207538. |
| 107 static_call_wrong_argument_count_negative_test: Fail | 109 static_call_wrong_argument_count_negative_test: Fail |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. | 432 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. |
| 431 | 433 |
| 432 [ $compiler == frog && $runtime == none ] | 434 [ $compiler == frog && $runtime == none ] |
| 433 *: Skip | 435 *: Skip |
| 434 | 436 |
| 435 [ $arch == simarm ] | 437 [ $arch == simarm ] |
| 436 *: Skip | 438 *: Skip |
| 437 | 439 |
| 438 [ $arch == arm ] | 440 [ $arch == arm ] |
| 439 *: Skip | 441 *: Skip |
| OLD | NEW |