| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 const_constructor_syntax_test/03: Fail # Negative language test. | 213 const_constructor_syntax_test/03: Fail # Negative language test. |
| 214 const_constructor_syntax_test/04: Fail # Negative language test. | 214 const_constructor_syntax_test/04: Fail # Negative language test. |
| 215 const_factory_negative_test: Fail # Negative language test. | 215 const_factory_negative_test: Fail # Negative language test. |
| 216 const_field_negative_test: Fail # Negative language test. | 216 const_field_negative_test: Fail # Negative language test. |
| 217 const_init4_negative_test: Fail # Negative language test. | 217 const_init4_negative_test: Fail # Negative language test. |
| 218 const_init_negative_test: Fail # Negative language test. | 218 const_init_negative_test: Fail # Negative language test. |
| 219 const_syntax_test/01: Fail # Negative language test. | 219 const_syntax_test/01: Fail # Negative language test. |
| 220 const_syntax_test/02: Fail # Negative language test. | 220 const_syntax_test/02: Fail # Negative language test. |
| 221 const_syntax_test/03: Fail # Negative language test. | 221 const_syntax_test/03: Fail # Negative language test. |
| 222 constructor2_negative_test: Fail # Negative language test. | 222 constructor2_negative_test: Fail # Negative language test. |
| 223 constructor_duplicate_initializers_test/02: Fail # Negative language test. | |
| 224 constructor_negative_test: Pass # For the wrong reason. | 223 constructor_negative_test: Pass # For the wrong reason. |
| 225 constructor_return_negative_test: Fail # Negative language test. | 224 constructor_return_negative_test: Fail # Negative language test. |
| 226 constructor_return_with_arrow_negative_test: Fail # Negative language test. | 225 constructor_return_with_arrow_negative_test: Fail # Negative language test. |
| 227 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. | 226 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. |
| 228 constructor_return_with_init_negative_test: Fail # Negative language test. | 227 constructor_return_with_init_negative_test: Fail # Negative language test. |
| 229 duplicate_implements_test/01: Fail # Negative language test. | 228 duplicate_implements_test/01: Fail # Negative language test. |
| 230 duplicate_implements_test/02: Fail # Negative language test. | 229 duplicate_implements_test/02: Fail # Negative language test. |
| 231 duplicate_implements_test/03: Fail # Negative language test. | 230 duplicate_implements_test/03: Fail # Negative language test. |
| 232 duplicate_implements_test/04: Fail # Negative language test. | 231 duplicate_implements_test/04: Fail # Negative language test. |
| 233 empty_body_member_negative_test: Fail # Negative language test. | 232 empty_body_member_negative_test: Fail # Negative language test. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 [ $compiler == dart2js && $runtime == safari ] | 349 [ $compiler == dart2js && $runtime == safari ] |
| 351 arithmetic_test: Skip # BUG(3492): Times out. | 350 arithmetic_test: Skip # BUG(3492): Times out. |
| 352 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 351 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 353 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 352 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 354 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 353 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 355 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 354 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 356 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 355 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 357 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 356 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 358 naming_test: Fail | 357 naming_test: Fail |
| 359 | 358 |
| OLD | NEW |