| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 static_final_field2_negative_test: Fail, OK # Negative language test.too | 217 static_final_field2_negative_test: Fail, OK # Negative language test.too |
| 218 static_final_field_negative_test: Fail, OK # Negative language test. | 218 static_final_field_negative_test: Fail, OK # Negative language test. |
| 219 static_top_level_test/00: Fail, OK # Negative language test. | 219 static_top_level_test/00: Fail, OK # Negative language test. |
| 220 static_top_level_test/01: Fail, OK # Negative language test. | 220 static_top_level_test/01: Fail, OK # Negative language test. |
| 221 static_top_level_test/02: Fail, OK # Negative language test. | 221 static_top_level_test/02: Fail, OK # Negative language test. |
| 222 static_top_level_test/03: Fail, OK # Negative language test. | 222 static_top_level_test/03: Fail, OK # Negative language test. |
| 223 static_top_level_test/04: Fail, OK # Negative language test. | 223 static_top_level_test/04: Fail, OK # Negative language test. |
| 224 static_top_level_test/05: Fail, OK # Negative language test. | 224 static_top_level_test/05: Fail, OK # Negative language test. |
| 225 string_interpolation7_negative_test: Fail, OK # Negative language test. | 225 string_interpolation7_negative_test: Fail, OK # Negative language test. |
| 226 throw7_negative_test: Fail, OK # Negative language test. | 226 throw7_negative_test: Fail, OK # Negative language test. |
| 227 try_catch_test: Fail # Uses new catch syntax. |
| 227 try_catch_syntax_test/08: Fail, OK # Negative language test. | 228 try_catch_syntax_test/08: Fail, OK # Negative language test. |
| 228 | 229 |
| 229 disable_privacy_test: Fail, OK # VM specific test. | 230 disable_privacy_test: Fail, OK # VM specific test. |
| 230 numbers_test: Fail, OK # (unintended?) VM specific test. | 231 numbers_test: Fail, OK # (unintended?) VM specific test. |
| 231 | 232 |
| 232 final_syntax_test/01: Fail | 233 final_syntax_test/01: Fail |
| 233 final_syntax_test/02: Fail | 234 final_syntax_test/02: Fail |
| 234 final_syntax_test/03: Fail | 235 final_syntax_test/03: Fail |
| 235 final_syntax_test/04: Fail | 236 final_syntax_test/04: Fail |
| 236 | 237 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 282 |
| 282 | 283 |
| 283 [ $compiler == dart2js && $runtime == safari ] | 284 [ $compiler == dart2js && $runtime == safari ] |
| 284 arithmetic_test: Skip # BUG(3492): Times out. | 285 arithmetic_test: Skip # BUG(3492): Times out. |
| 285 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' |
| 286 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' |
| 287 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 288 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 288 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 289 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 289 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 290 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 290 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 291 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |