| 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 20 matching lines...) Expand all Loading... |
| 31 closure_type_test: Fail # does not detect type error in checked mode. | 31 closure_type_test: Fail # does not detect type error in checked mode. |
| 32 function_type_test: Fail # does not detect type error in checked mode. | 32 function_type_test: Fail # does not detect type error in checked mode. |
| 33 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. | 33 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. |
| 34 void_type_test: Fail # does not detect type error in checked mode. | 34 void_type_test: Fail # does not detect type error in checked mode. |
| 35 | 35 |
| 36 type_parameter_test/01: Fail # Issue 4932 | 36 type_parameter_test/01: Fail # Issue 4932 |
| 37 type_parameter_test/02: Fail # Issue 4932 | 37 type_parameter_test/02: Fail # Issue 4932 |
| 38 type_parameter_test/03: Fail # Issue 4932 | 38 type_parameter_test/03: Fail # Issue 4932 |
| 39 type_parameter_test/04: Fail # Issue 4932 | 39 type_parameter_test/04: Fail # Issue 4932 |
| 40 | 40 |
| 41 execute_finally3_test: Fail # Issue 5517 |
| 42 execute_finally6_test: Fail # Issue 5517 |
| 43 |
| 41 [ $compiler == dart2js && $unchecked ] | 44 [ $compiler == dart2js && $unchecked ] |
| 42 assertion_test: Fail | 45 assertion_test: Fail |
| 43 | 46 |
| 44 # Only checked mode reports an error on type assignment | 47 # Only checked mode reports an error on type assignment |
| 45 # problems in compile time constants. | 48 # problems in compile time constants. |
| 46 compile_time_constant_checked_test/02: Fail, OK | 49 compile_time_constant_checked_test/02: Fail, OK |
| 47 compile_time_constant_checked2_test/01: Fail, OK | 50 compile_time_constant_checked2_test/01: Fail, OK |
| 48 compile_time_constant_checked2_test/02: Fail, OK | 51 compile_time_constant_checked2_test/02: Fail, OK |
| 49 compile_time_constant_checked2_test/03: Fail, OK | 52 compile_time_constant_checked2_test/03: Fail, OK |
| 50 compile_time_constant_checked2_test/04: Fail, OK | 53 compile_time_constant_checked2_test/04: Fail, OK |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 329 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 327 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 330 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 328 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 331 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 329 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 332 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 330 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 333 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 331 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 334 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 332 | 335 |
| 333 [ $compiler == dart2js && $runtime == ff && $system == windows ] | 336 [ $compiler == dart2js && $runtime == ff && $system == windows ] |
| 334 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. | 337 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. |
| 335 typed_message_test: Fail # http://dartbug.com/5383 | 338 typed_message_test: Fail # http://dartbug.com/5383 |
| OLD | NEW |