| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 | 298 |
| 299 | 299 |
| 300 [ $compiler == dart2js && $runtime == none ] | 300 [ $compiler == dart2js && $runtime == none ] |
| 301 *: Fail, Pass # TODO(ahe): Triage these tests. | 301 *: Fail, Pass # TODO(ahe): Triage these tests. |
| 302 | 302 |
| 303 | 303 |
| 304 [ $compiler == dart2js && $runtime == ff ] | 304 [ $compiler == dart2js && $runtime == ff ] |
| 305 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 305 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 306 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 306 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 307 double_to_string_as_fixed_test: Fail | 307 double_to_string_as_fixed_test: Fail |
| 308 raw_string_test: Fail |
| 308 | 309 |
| 309 | 310 |
| 310 [ $compiler == dart2js && $runtime == ie ] | 311 [ $compiler == dart2js && $runtime == ie ] |
| 311 call_through_getter_test: Fail | 312 call_through_getter_test: Fail |
| 312 call_through_null_getter_test: Fail | 313 call_through_null_getter_test: Fail |
| 313 div_by_zero_test: Fail | 314 div_by_zero_test: Fail |
| 314 double_to_string_as_fixed_test: Fail | 315 double_to_string_as_fixed_test: Fail |
| 315 expect_test: Fail | 316 expect_test: Fail |
| 316 factory3_test: Fail | 317 factory3_test: Fail |
| 317 local_function_test: Fail | 318 local_function_test: Fail |
| 318 stack_overflow_test: Fail | 319 stack_overflow_test: Fail |
| 319 type_checks_in_factory_method_test: Fail | 320 type_checks_in_factory_method_test: Fail |
| 320 | 321 |
| 321 | 322 |
| 322 [ $compiler == dart2js && $runtime == safari ] | 323 [ $compiler == dart2js && $runtime == safari ] |
| 323 arithmetic_test: Skip # BUG(3492): Times out. | 324 arithmetic_test: Skip # BUG(3492): Times out. |
| 324 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 325 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 325 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 326 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 326 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 327 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 327 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 328 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 328 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 329 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 329 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 330 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |