| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 static_top_level_test/00: Fail # Negative language test. | 235 static_top_level_test/00: Fail # Negative language test. |
| 236 static_top_level_test/01: Fail # Negative language test. | 236 static_top_level_test/01: Fail # Negative language test. |
| 237 static_top_level_test/02: Fail # Negative language test. | 237 static_top_level_test/02: Fail # Negative language test. |
| 238 static_top_level_test/03: Fail # Negative language test. | 238 static_top_level_test/03: Fail # Negative language test. |
| 239 static_top_level_test/04: Fail # Negative language test. | 239 static_top_level_test/04: Fail # Negative language test. |
| 240 static_top_level_test/05: Fail # Negative language test. | 240 static_top_level_test/05: Fail # Negative language test. |
| 241 static_top_level_test/06: Fail # Negative language test. | 241 static_top_level_test/06: Fail # Negative language test. |
| 242 static_top_level_test/07: Fail # Negative language test. | 242 static_top_level_test/07: Fail # Negative language test. |
| 243 string_interpolation7_negative_test: Fail # Negative language test. | 243 string_interpolation7_negative_test: Fail # Negative language test. |
| 244 throw7_negative_test: Fail # Negative language test. | 244 throw7_negative_test: Fail # Negative language test. |
| 245 try_catch_syntax_test/08: Fail # Negative language test. | |
| 246 | 245 |
| 247 disable_privacy_test: Fail, OK # VM specific test. | 246 disable_privacy_test: Fail, OK # VM specific test. |
| 248 numbers_test: Fail, OK # (unintended?) VM specific test. | 247 numbers_test: Fail, OK # (unintended?) VM specific test. |
| 249 | 248 |
| 250 div_by_zero_test: Fail, OK # Leg only has doubles. | 249 div_by_zero_test: Fail, OK # Leg only has doubles. |
| 251 bit_operations_test: Fail, OK # Tests bit operations outside the 32 bit range. | 250 bit_operations_test: Fail, OK # Tests bit operations outside the 32 bit range. |
| 252 # The following test will start to fail again once dart2js implements the | 251 # The following test will start to fail again once dart2js implements the |
| 253 # runtime semantics for numbers. | 252 # runtime semantics for numbers. |
| 254 # Should be: Fail, OK # Expects negative results of bit-operations. | 253 # Should be: Fail, OK # Expects negative results of bit-operations. |
| 255 optimization_test: Pass | 254 optimization_test: Pass |
| (...skipping 30 matching lines...) Expand all Loading... |
| 286 | 285 |
| 287 [ $compiler == dart2js && $runtime == safari ] | 286 [ $compiler == dart2js && $runtime == safari ] |
| 288 arithmetic_test: Skip # BUG(3492): Times out. | 287 arithmetic_test: Skip # BUG(3492): Times out. |
| 289 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 288 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 290 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 289 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 291 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 290 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 292 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 291 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 293 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 292 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 294 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 293 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 295 | 294 |
| OLD | NEW |