| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 const_constructor_syntax_test/03: Fail # Negative language test. | 153 const_constructor_syntax_test/03: Fail # Negative language test. |
| 154 const_constructor_syntax_test/04: Fail # Negative language test. | 154 const_constructor_syntax_test/04: Fail # Negative language test. |
| 155 const_factory_negative_test: Fail # Negative language test. | 155 const_factory_negative_test: Fail # Negative language test. |
| 156 const_field_negative_test: Fail # Negative language test. | 156 const_field_negative_test: Fail # Negative language test. |
| 157 const_init4_negative_test: Fail # Negative language test. | 157 const_init4_negative_test: Fail # Negative language test. |
| 158 const_init_negative_test: Fail # Negative language test. | 158 const_init_negative_test: Fail # Negative language test. |
| 159 const_syntax_test/01: Fail # Negative language test. | 159 const_syntax_test/01: Fail # Negative language test. |
| 160 const_syntax_test/02: Fail # Negative language test. | 160 const_syntax_test/02: Fail # Negative language test. |
| 161 const_syntax_test/03: Fail # Negative language test. | 161 const_syntax_test/03: Fail # Negative language test. |
| 162 constructor2_negative_test: Fail # Negative language test. | 162 constructor2_negative_test: Fail # Negative language test. |
| 163 constructor_duplicate_initializers_test/02: Fail # Negative language test. | |
| 164 constructor_negative_test: Pass # For the wrong reason. | 163 constructor_negative_test: Pass # For the wrong reason. |
| 165 constructor_return_negative_test: Fail # Negative language test. | 164 constructor_return_negative_test: Fail # Negative language test. |
| 166 constructor_return_with_arrow_negative_test: Fail # Negative language test. | 165 constructor_return_with_arrow_negative_test: Fail # Negative language test. |
| 167 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. | 166 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. |
| 168 constructor_return_with_init_negative_test: Fail # Negative language test. | 167 constructor_return_with_init_negative_test: Fail # Negative language test. |
| 169 duplicate_implements_test/01: Fail # Negative language test. | 168 duplicate_implements_test/01: Fail # Negative language test. |
| 170 duplicate_implements_test/02: Fail # Negative language test. | 169 duplicate_implements_test/02: Fail # Negative language test. |
| 171 duplicate_implements_test/03: Fail # Negative language test. | 170 duplicate_implements_test/03: Fail # Negative language test. |
| 172 duplicate_implements_test/04: Fail # Negative language test. | 171 duplicate_implements_test/04: Fail # Negative language test. |
| 173 empty_body_member_negative_test: Fail # Negative language test. | 172 empty_body_member_negative_test: Fail # Negative language test. |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 [ $compiler == dart2js && $runtime == safari ] | 290 [ $compiler == dart2js && $runtime == safari ] |
| 292 arithmetic_test: Skip # BUG(3492): Times out. | 291 arithmetic_test: Skip # BUG(3492): Times out. |
| 293 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' |
| 294 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' |
| 295 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 294 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 296 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 295 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 297 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 296 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 298 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 297 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 299 naming_test: Fail | 298 naming_test: Fail |
| 300 | 299 |
| OLD | NEW |