| 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 [ $compiler == dart2js || $compiler == dart2dart ] | 5 [ $compiler == dart2js || $compiler == dart2dart ] |
| 6 # VM specific tests that should not be run by dart2js. | 6 # VM specific tests that should not be run by dart2js. |
| 7 *vm_test: Skip | 7 *vm_test: Skip |
| 8 *vm_negative_test: Skip | 8 *vm_negative_test: Skip |
| 9 | 9 |
| 10 [ $compiler == dart2js && $checked ] | 10 [ $compiler == dart2js && $checked ] |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 type_variable_scope_test/05: Fail | 30 type_variable_scope_test/05: Fail |
| 31 type_variable_scope2_test: Fail | 31 type_variable_scope2_test: Fail |
| 32 assign_top_method_negative_test: Pass # For the wrong reasons. | 32 assign_top_method_negative_test: Pass # For the wrong reasons. |
| 33 f_bounded_quantification_test/01: Fail | 33 f_bounded_quantification_test/01: Fail |
| 34 f_bounded_quantification_test/02: Fail | 34 f_bounded_quantification_test/02: Fail |
| 35 default_factory2_test/01: Fail # Type bounds for type variable not checked. | 35 default_factory2_test/01: Fail # Type bounds for type variable not checked. |
| 36 closure_type_test: Fail # does not detect type error in checked mode. | 36 closure_type_test: Fail # does not detect type error in checked mode. |
| 37 function_type_test: Fail # does not detect type error in checked mode. | 37 function_type_test: Fail # does not detect type error in checked mode. |
| 38 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. | 38 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. |
| 39 void_type_test: Fail # does not detect type error in checked mode. | 39 void_type_test: Fail # does not detect type error in checked mode. |
| 40 |
| 40 arithmetic_test: Fail | 41 arithmetic_test: Fail |
| 41 | 42 |
| 42 type_parameter_test/01: Fail # Issue 4932 | |
| 43 type_parameter_test/02: Fail # Issue 4932 | |
| 44 type_parameter_test/03: Fail # Issue 4932 | |
| 45 type_parameter_test/04: Fail # Issue 4932 | |
| 46 | |
| 47 [ $compiler == dart2js && $unchecked ] | 43 [ $compiler == dart2js && $unchecked ] |
| 48 assertion_test: Fail | 44 assertion_test: Fail |
| 49 | 45 |
| 50 [ $compiler == dart2js ] | 46 [ $compiler == dart2js ] |
| 51 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js
uses unsigned input for >>. | 47 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js
uses unsigned input for >>. |
| 52 | 48 |
| 53 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject
old getter syntax. | 49 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject
old getter syntax. |
| 54 | 50 |
| 55 function_type_this_parameter_test: Crash # Issue 4417. | 51 function_type_this_parameter_test: Crash # Issue 4417. |
| 56 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 52 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| (...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 type_propagation_in_for_update_test: Fail | 721 type_propagation_in_for_update_test: Fail |
| 726 type_propagation_phi_test: Fail | 722 type_propagation_phi_test: Fail |
| 727 typed_message_test: Fail | 723 typed_message_test: Fail |
| 728 unary2_test: Fail | 724 unary2_test: Fail |
| 729 unary_test: Fail | 725 unary_test: Fail |
| 730 unbound_getter_test: Fail | 726 unbound_getter_test: Fail |
| 731 unnamed_closure_test: Fail | 727 unnamed_closure_test: Fail |
| 732 unqual_name_test: Fail | 728 unqual_name_test: Fail |
| 733 var_init_test: Fail | 729 var_init_test: Fail |
| 734 while_test: Fail | 730 while_test: Fail |
| OLD | NEW |