| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 parameter_initializer6_negative_test: Fail # Issue 3502 | 92 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 93 named_parameters2_test: Fail # Unimplemented non-matching static call | 93 named_parameters2_test: Fail # Unimplemented non-matching static call |
| 94 named_parameters3_test: Fail # Unimplemented non-matching static call | 94 named_parameters3_test: Fail # Unimplemented non-matching static call |
| 95 named_parameters4_test: Fail # Unimplemented non-matching static call | 95 named_parameters4_test: Fail # Unimplemented non-matching static call |
| 96 naming_test: Fail # Broken because operator negate is not accessible as if it wa
s a method. | 96 naming_test: Fail # Broken because operator negate is not accessible as if it wa
s a method. |
| 97 operator6_test: Fail # Constant folding of bit-operations does not agree with ru
ntime behavior. Issue 2887. | 97 operator6_test: Fail # Constant folding of bit-operations does not agree with ru
ntime behavior. Issue 2887. |
| 98 pseudo_kw_test: Fail # Unexpected token '(' | 98 pseudo_kw_test: Fail # Unexpected token '(' |
| 99 super_implicit_closure_test: Fail # internal error: super property read not impl
emented | 99 super_implicit_closure_test: Fail # internal error: super property read not impl
emented |
| 100 super_operator_test: Fail # internal error: super property store not implemented | 100 super_operator_test: Fail # internal error: super property store not implemented |
| 101 switch_label_test: Fail # error: target of continue is not a loop or switch case | 101 switch_label_test: Fail # error: target of continue is not a loop or switch case |
| 102 setter_no_getter_call_test/01: Crash # Issue 4361 |
| 102 | 103 |
| 103 | 104 |
| 104 # External tests. | 105 # External tests. |
| 105 external_test/01: Fail | 106 external_test/01: Fail |
| 106 external_test/02: Fail | 107 external_test/02: Fail |
| 107 external_test/11: Fail | 108 external_test/11: Fail |
| 108 external_test/12: Fail | 109 external_test/12: Fail |
| 109 external_test/13: Skip # Runtime error (missing patch). | 110 external_test/13: Skip # Runtime error (missing patch). |
| 110 external_test/14: Fail | 111 external_test/14: Fail |
| 111 external_test/15: Fail | 112 external_test/15: Fail |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 | 281 |
| 281 | 282 |
| 282 [ $compiler == dart2js && $runtime == safari ] | 283 [ $compiler == dart2js && $runtime == safari ] |
| 283 arithmetic_test: Skip # BUG(3492): Times out. | 284 arithmetic_test: Skip # BUG(3492): Times out. |
| 284 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 285 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 285 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 286 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 286 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 287 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 287 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 288 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 288 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 289 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 289 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 290 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |