| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 const_syntax_test/01: Fail # Negative language test. | 177 const_syntax_test/01: Fail # Negative language test. |
| 178 const_syntax_test/02: Fail # Negative language test. | 178 const_syntax_test/02: Fail # Negative language test. |
| 179 const_syntax_test/03: Fail # Negative language test. | 179 const_syntax_test/03: Fail # Negative language test. |
| 180 constructor2_negative_test: Fail # Negative language test. | 180 constructor2_negative_test: Fail # Negative language test. |
| 181 constructor_duplicate_initializers_test/02: Fail # Negative language test. | 181 constructor_duplicate_initializers_test/02: Fail # Negative language test. |
| 182 constructor_negative_test: Pass # For the wrong reason. | 182 constructor_negative_test: Pass # For the wrong reason. |
| 183 constructor_return_negative_test: Fail # Negative language test. | 183 constructor_return_negative_test: Fail # Negative language test. |
| 184 constructor_return_with_arrow_negative_test: Fail # Negative language test. | 184 constructor_return_with_arrow_negative_test: Fail # Negative language test. |
| 185 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. | 185 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. |
| 186 constructor_return_with_init_negative_test: Fail # Negative language test. | 186 constructor_return_with_init_negative_test: Fail # Negative language test. |
| 187 duplicate_constructor_test/01: Fail # Negative language test. | |
| 188 duplicate_implements_test/01: Fail # Negative language test. | 187 duplicate_implements_test/01: Fail # Negative language test. |
| 189 duplicate_implements_test/02: Fail # Negative language test. | 188 duplicate_implements_test/02: Fail # Negative language test. |
| 190 duplicate_implements_test/03: Fail # Negative language test. | 189 duplicate_implements_test/03: Fail # Negative language test. |
| 191 duplicate_implements_test/04: Fail # Negative language test. | 190 duplicate_implements_test/04: Fail # Negative language test. |
| 192 empty_body_member_negative_test: Fail # Negative language test. | 191 empty_body_member_negative_test: Fail # Negative language test. |
| 193 factory2_negative_test: Fail # Negative language test. | 192 factory2_negative_test: Fail # Negative language test. |
| 194 factory3_negative_test: Fail # Negative language test. | 193 factory3_negative_test: Fail # Negative language test. |
| 195 factory_negative_test: Fail # Negative language test. | 194 factory_negative_test: Fail # Negative language test. |
| 196 field2_negative_test: Fail # Negative language test. | 195 field2_negative_test: Fail # Negative language test. |
| 197 field3_negative_test: Fail # Negative language test. | 196 field3_negative_test: Fail # Negative language test. |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 [ $compiler == dart2js && $runtime == safari ] | 309 [ $compiler == dart2js && $runtime == safari ] |
| 311 arithmetic_test: Skip # BUG(3492): Times out. | 310 arithmetic_test: Skip # BUG(3492): Times out. |
| 312 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 311 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 313 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 312 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 314 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 313 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 315 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 314 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 316 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 315 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 317 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 316 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 318 naming_test: Fail | 317 naming_test: Fail |
| 319 | 318 |
| OLD | NEW |