| 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 arithmetic_test: Fail |
| 40 | 41 |
| 41 arithmetic_test: Fail | 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 |
| 42 | 46 |
| 43 [ $compiler == dart2js && $unchecked ] | 47 [ $compiler == dart2js && $unchecked ] |
| 44 assertion_test: Fail | 48 assertion_test: Fail |
| 45 | 49 |
| 46 [ $compiler == dart2js ] | 50 [ $compiler == dart2js ] |
| 47 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject
old getter syntax. | 51 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject
old getter syntax. |
| 48 | 52 |
| 49 function_type_this_parameter_test: Crash # Issue 4417. | 53 function_type_this_parameter_test: Crash # Issue 4417. |
| 50 compile_time_constant_test/02: Fail, OK # By inlining the use-function we don't
compile the static variable. | 54 compile_time_constant_test/02: Fail, OK # By inlining the use-function we don't
compile the static variable. |
| 51 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 55 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 | 289 |
| 286 [ $compiler == dart2js && $runtime == safari ] | 290 [ $compiler == dart2js && $runtime == safari ] |
| 287 arithmetic_test: Skip # BUG(3492): Times out. | 291 arithmetic_test: Skip # BUG(3492): Times out. |
| 288 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 292 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 289 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 293 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 290 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 294 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 291 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 295 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 292 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 296 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 293 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 297 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 294 | 298 |
| OLD | NEW |