| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 method_name_test: Fail # Parsing of pseudo keywords. | 85 method_name_test: Fail # Parsing of pseudo keywords. |
| 86 method_override_test: Fail # cannot resolve type GetKeysFunctionType | 86 method_override_test: Fail # cannot resolve type GetKeysFunctionType |
| 87 method_override2_test/00: Fail # accepts illegal override | 87 method_override2_test/00: Fail # accepts illegal override |
| 88 method_override2_test/01: Fail # accepts illegal override | 88 method_override2_test/01: Fail # accepts illegal override |
| 89 method_override2_test/02: Fail # accepts illegal override | 89 method_override2_test/02: Fail # accepts illegal override |
| 90 method_override2_test/03: Fail # accepts illegal override | 90 method_override2_test/03: Fail # accepts illegal override |
| 91 parameter_initializer6_negative_test: Fail # Issue 3502 | 91 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 92 named_parameters2_test: Fail # Unimplemented non-matching static call | 92 named_parameters2_test: Fail # Unimplemented non-matching static call |
| 93 named_parameters3_test: Fail # Unimplemented non-matching static call | 93 named_parameters3_test: Fail # Unimplemented non-matching static call |
| 94 named_parameters4_test: Fail # Unimplemented non-matching static call | 94 named_parameters4_test: Fail # Unimplemented non-matching static call |
| 95 naming_test: Fail # Broken because operator negate is not accessible as if it wa
s a method. | |
| 96 operator6_test: Fail # Constant folding of bit-operations does not agree with ru
ntime behavior. Issue 2887. | 95 operator6_test: Fail # Constant folding of bit-operations does not agree with ru
ntime behavior. Issue 2887. |
| 97 pseudo_kw_test: Fail # Unexpected token '(' | 96 pseudo_kw_test: Fail # Unexpected token '(' |
| 98 super_implicit_closure_test: Fail # internal error: super property read not impl
emented | 97 super_implicit_closure_test: Fail # internal error: super property read not impl
emented |
| 99 super_operator_test: Fail # internal error: super property store not implemented | 98 super_operator_test: Fail # internal error: super property store not implemented |
| 100 switch_label_test: Fail # error: target of continue is not a loop or switch case | 99 switch_label_test: Fail # error: target of continue is not a loop or switch case |
| 101 setter_no_getter_call_test/01: Crash # Issue 4361 | 100 setter_no_getter_call_test/01: Crash # Issue 4361 |
| 102 | 101 |
| 103 | 102 |
| 104 # External tests. | 103 # External tests. |
| 105 external_test/01: Fail | 104 external_test/01: Fail |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 289 |
| 291 | 290 |
| 292 [ $compiler == dart2js && $runtime == safari ] | 291 [ $compiler == dart2js && $runtime == safari ] |
| 293 arithmetic_test: Skip # BUG(3492): Times out. | 292 arithmetic_test: Skip # BUG(3492): Times out. |
| 294 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 293 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 295 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 294 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 296 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 295 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 297 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 296 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 298 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 297 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 299 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 298 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |