| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 final_param_negative_test: Fail # Negative language test. | 187 final_param_negative_test: Fail # Negative language test. |
| 188 final_var_negative_test: Fail # Negative language test. | 188 final_var_negative_test: Fail # Negative language test. |
| 189 instantiate_type_variable_negative_test: Pass # For the wrong reason. | 189 instantiate_type_variable_negative_test: Pass # For the wrong reason. |
| 190 interface_factory3_negative_test: Fail # Negative language test. | 190 interface_factory3_negative_test: Fail # Negative language test. |
| 191 interface_factory_constructor_negative_test: Fail # Negative language test. | 191 interface_factory_constructor_negative_test: Fail # Negative language test. |
| 192 interface_static_method_negative_test: Fail # Negative language test. | 192 interface_static_method_negative_test: Fail # Negative language test. |
| 193 list_literal1_negative_test: Fail # Negative language test. | 193 list_literal1_negative_test: Fail # Negative language test. |
| 194 list_literal2_negative_test: Fail # Negative language test. | 194 list_literal2_negative_test: Fail # Negative language test. |
| 195 map_literal1_negative_test: Fail # Negative language test. | 195 map_literal1_negative_test: Fail # Negative language test. |
| 196 map_literal2_negative_test: Fail # Negative language test. | 196 map_literal2_negative_test: Fail # Negative language test. |
| 197 new_expression_type_args_frog_test/02: Fail # Negative language test. | |
| 198 non_const_super_negative_test: Fail # Negative language test. | 197 non_const_super_negative_test: Fail # Negative language test. |
| 199 number_identifier_negative_test: Fail # Negative language test. | 198 number_identifier_negative_test: Fail # Negative language test. |
| 200 operator1_negative_test: Fail # Negative language test. | 199 operator1_negative_test: Fail # Negative language test. |
| 201 override_field_test/04: Fail # Broken test. | 200 override_field_test/04: Fail # Broken test. |
| 202 prefix16_test: Fail | 201 prefix16_test: Fail |
| 203 prefix18_negative_test: Fail # Negative language test. | 202 prefix18_negative_test: Fail # Negative language test. |
| 204 prefix20_negative_test: Fail # Negative language test. | 203 prefix20_negative_test: Fail # Negative language test. |
| 205 prefix23_negative_test: Fail # Negative language test. | 204 prefix23_negative_test: Fail # Negative language test. |
| 206 pseudo_kw_illegal_test/01: Fail # Negative language test. | 205 pseudo_kw_illegal_test/01: Fail # Negative language test. |
| 207 pseudo_kw_illegal_test/03: Fail # Negative language test. | 206 pseudo_kw_illegal_test/03: Fail # Negative language test. |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 [ $compiler == dart2js && $runtime == safari ] | 284 [ $compiler == dart2js && $runtime == safari ] |
| 286 arithmetic_test: Skip # BUG(3492): Times out. | 285 arithmetic_test: Skip # BUG(3492): Times out. |
| 287 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 286 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 288 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 287 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 289 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 288 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 290 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 289 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 291 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 290 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 292 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 291 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 293 naming_test: Fail | 292 naming_test: Fail |
| 294 | 293 |
| OLD | NEW |