| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 | 252 |
| 253 [ $compiler == dart2js && $runtime == ff ] | 253 [ $compiler == dart2js && $runtime == ff ] |
| 254 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 254 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 255 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 255 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 256 double_to_string_as_fixed_test: Fail | 256 double_to_string_as_fixed_test: Fail |
| 257 | 257 |
| 258 | 258 |
| 259 [ $compiler == dart2js && $runtime == ie ] | 259 [ $compiler == dart2js && $runtime == ie ] |
| 260 arithmetic2_test: Fail | 260 arithmetic2_test: Fail |
| 261 bad_named_parameters2_test: Fail |
| 262 bad_named_parameters_test: Fail |
| 261 call_through_getter_test: Fail | 263 call_through_getter_test: Fail |
| 262 call_through_null_getter_test: Fail | 264 call_through_null_getter_test: Fail |
| 263 div_by_zero_test: Fail | 265 div_by_zero_test: Fail |
| 264 double_to_string_as_fixed_test: Fail | 266 double_to_string_as_fixed_test: Fail |
| 265 expect_test: Fail | 267 expect_test: Fail |
| 266 factory3_test: Fail | 268 factory3_test: Fail |
| 269 implied_interface_test: Fail |
| 267 library_private_in_constructor_test: Fail | 270 library_private_in_constructor_test: Fail |
| 268 list_test: Fail | 271 list_test: Fail |
| 272 local_function3_test: Fail |
| 269 local_function_test: Fail | 273 local_function_test: Fail |
| 270 naming_test: Fail | 274 naming_test: Fail |
| 275 private3_test: Fail |
| 276 savannah_test: Fail |
| 271 stack_overflow_test: Fail | 277 stack_overflow_test: Fail |
| 272 type_checks_in_factory_method_test: Fail | 278 type_checks_in_factory_method_test: Fail |
| 273 is_nan_test: Fail # BUG(3542) | 279 is_nan_test: Fail # BUG(3542) |
| 274 | 280 |
| 275 | 281 |
| 276 [ $compiler == dart2js && $runtime == safari ] | 282 [ $compiler == dart2js && $runtime == safari ] |
| 277 arithmetic_test: Skip # BUG(3492): Times out. | 283 arithmetic_test: Skip # BUG(3492): Times out. |
| 278 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 284 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 279 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 285 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 280 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 286 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 281 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 287 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 282 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 288 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 283 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 289 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |