| 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 ] | 5 [ $compiler == dart2js ] |
| 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 16 matching lines...) Expand all Loading... |
| 27 type_variable_scope_test/04: Fail | 27 type_variable_scope_test/04: Fail |
| 28 type_variable_scope_test/05: Fail | 28 type_variable_scope_test/05: Fail |
| 29 type_variable_scope2_test: Fail | 29 type_variable_scope2_test: Fail |
| 30 assign_top_method_negative_test: Pass # For the wrong reasons. | 30 assign_top_method_negative_test: Pass # For the wrong reasons. |
| 31 f_bounded_quantification_test/01: Fail | 31 f_bounded_quantification_test/01: Fail |
| 32 f_bounded_quantification_test/02: Fail | 32 f_bounded_quantification_test/02: Fail |
| 33 default_factory2_test/01: Fail # Type bounds for type variable not checked. | 33 default_factory2_test/01: Fail # Type bounds for type variable not checked. |
| 34 closure_type_test: Fail # does not detect type error in checked mode. | 34 closure_type_test: Fail # does not detect type error in checked mode. |
| 35 function_type_test: Fail # does not detect type error in checked mode. | 35 function_type_test: Fail # does not detect type error in checked mode. |
| 36 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. | 36 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. |
| 37 void_type_test: Fail # does not detect type error in checked mode. |
| 37 | 38 |
| 38 arithmetic_test: Fail | 39 arithmetic_test: Fail |
| 39 | 40 |
| 40 [ $compiler == dart2js && $unchecked ] | 41 [ $compiler == dart2js && $unchecked ] |
| 41 assertion_test: Fail, OK | 42 assertion_test: Fail, OK |
| 42 | 43 |
| 43 [ $compiler == dart2js ] | 44 [ $compiler == dart2js ] |
| 44 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 45 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| 45 static_initializer_type_error_test: Fail # Checked mode not supported. | 46 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 46 | 47 |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 | 260 |
| 260 | 261 |
| 261 [ $compiler == dart2js && $runtime == safari ] | 262 [ $compiler == dart2js && $runtime == safari ] |
| 262 arithmetic_test: Skip # BUG(3492): Times out. | 263 arithmetic_test: Skip # BUG(3492): Times out. |
| 263 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 264 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 264 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 265 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 265 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 266 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 266 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 267 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 267 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 268 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 268 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 269 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |