| 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 ] | 5 [ $compiler == dart2js ] |
| 6 class_test: Fail | 6 class_test: Fail |
| 7 statements_test: Fail | 7 statements_test: Fail |
| 8 typed_locals_test: Fail | 8 typed_locals_test: Fail |
| 9 no_such_method_test: Fail # Wrong Invocation.memberName. | 9 no_such_method_test: Fail # Wrong Invocation.memberName. |
| 10 | 10 |
| 11 constant_javascript_semantics4_test: Fail, OK | 11 constant_javascript_semantics4_test: Fail, OK |
| 12 | 12 |
| 13 [ $compiler == dart2js && $checked ] | 13 [ $compiler == dart2js && $checked ] |
| 14 variable_type_test/03: Fail, OK | 14 variable_type_test/03: Fail, OK |
| 15 variable_type_test/01: Fail, OK | 15 variable_type_test/01: Fail, OK |
| 16 | 16 |
| 17 [ $compiler == dart2js && $host_checked ] | 17 [ $compiler == dart2js && $host_checked && $checked == false ] |
| 18 # Test that @IrRepresentation yields compile-time errors in host-checked mode. | 18 # Test that @IrRepresentation yields compile-time errors in host-checked mode. |
| 19 # The condition "$checked == false" is to be removed once we build IR in |
| 20 # target-checked mode. |
| 19 ir_representation_test: CompileTimeError, OK | 21 ir_representation_test: CompileTimeError, OK |
| 20 | 22 |
| 21 [ $compiler == dart2js && $mode == debug ] | 23 [ $compiler == dart2js && $mode == debug ] |
| 22 operator_test: Skip | 24 operator_test: Skip |
| 23 string_interpolation_test: Skip | 25 string_interpolation_test: Skip |
| 24 | 26 |
| 25 [ $compiler == dart2js && $runtime == ie9 ] | 27 [ $compiler == dart2js && $runtime == ie9 ] |
| 26 class_test: Fail | 28 class_test: Fail |
| 27 deferred/*: Skip # http://dartbug.com/12635 | 29 deferred/*: Skip # http://dartbug.com/12635 |
| 28 | 30 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 42 [ $jscl ] | 44 [ $jscl ] |
| 43 timer_test: Fail # Issue 7728. | 45 timer_test: Fail # Issue 7728. |
| 44 | 46 |
| 45 [ $runtime == none ] | 47 [ $runtime == none ] |
| 46 timer_negative_test: Fail, OK # A negative runtime test. | 48 timer_negative_test: Fail, OK # A negative runtime test. |
| 47 bailout8_test: Fail, OK # Mismatch in thrown exception. | 49 bailout8_test: Fail, OK # Mismatch in thrown exception. |
| 48 | 50 |
| 49 [ $csp ] | 51 [ $csp ] |
| 50 deferred/deferred_class_test: Fail # http://dartbug.com/3940 | 52 deferred/deferred_class_test: Fail # http://dartbug.com/3940 |
| 51 deferred/deferred_constant_test: Fail # http://dartbug.com/3940 | 53 deferred/deferred_constant_test: Fail # http://dartbug.com/3940 |
| OLD | NEW |