| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 | 201 |
| 202 | 202 |
| 203 # | 203 # |
| 204 # The following tests are all negative tests that should be fixed. | 204 # The following tests are all negative tests that should be fixed. |
| 205 # | 205 # |
| 206 abstract_static_negative_test: Fail # Negative language test. | 206 abstract_static_negative_test: Fail # Negative language test. |
| 207 abstract_syntax_test/01: Fail # Negative language test. | 207 abstract_syntax_test/01: Fail # Negative language test. |
| 208 abstract_syntax_test/02: Fail # Negative language test. | 208 abstract_syntax_test/02: Fail # Negative language test. |
| 209 assign_top_method_negative_test: Fail # Negative language test. | 209 assign_top_method_negative_test: Fail # Negative language test. |
| 210 class_extends_negative_test: Fail # Negative language test. | 210 class_extends_negative_test: Fail # Negative language test. |
| 211 const_constructor_syntax_test/01: Fail # Negative language test. | |
| 212 const_constructor_syntax_test/02: Fail # Negative language test. | |
| 213 const_constructor_syntax_test/03: Fail # Negative language test. | |
| 214 const_constructor_syntax_test/04: Fail # Negative language test. | 211 const_constructor_syntax_test/04: Fail # Negative language test. |
| 215 const_field_negative_test: Fail # Negative language test. | 212 const_field_negative_test: Fail # Negative language test. |
| 216 const_init4_negative_test: Fail # Negative language test. | 213 const_init4_negative_test: Fail # Negative language test. |
| 217 const_init_negative_test: Fail # Negative language test. | 214 const_init_negative_test: Fail # Negative language test. |
| 218 const_syntax_test/04: Fail # Negative language test. | 215 const_syntax_test/04: Fail # Negative language test. |
| 219 constructor2_negative_test: Fail # Negative language test. | 216 constructor2_negative_test: Fail # Negative language test. |
| 220 constructor_negative_test: Pass # For the wrong reason. | 217 constructor_negative_test: Pass # For the wrong reason. |
| 221 constructor_return_negative_test: Fail # Negative language test. | 218 constructor_return_negative_test: Fail # Negative language test. |
| 222 constructor_return_with_arrow_negative_test: Fail # Negative language test. | 219 constructor_return_with_arrow_negative_test: Fail # Negative language test. |
| 223 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. | 220 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t
est. |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 arithmetic_test: Skip # BUG(3492): Times out. | 328 arithmetic_test: Skip # BUG(3492): Times out. |
| 332 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' |
| 333 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' |
| 334 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 331 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 335 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 332 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 336 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 333 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 337 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 334 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 338 | 335 |
| 339 [ $compiler == dart2js && $runtime == ff && $system == windows ] | 336 [ $compiler == dart2js && $runtime == ff && $system == windows ] |
| 340 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. |
| OLD | NEW |