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 # 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 102 |
103 | 103 |
| 104 # External tests. |
| 105 external_test/01: Fail |
| 106 external_test/02: Fail |
| 107 external_test/11: Fail |
| 108 external_test/12: Fail |
| 109 external_test/13: Skip # Runtime error (missing patch). |
| 110 external_test/14: Fail |
| 111 external_test/15: Fail |
| 112 external_test/20: Skip # Runtime error (missing patch). |
| 113 external_test/21: Fail |
| 114 external_test/22: Fail |
| 115 external_test/23: Fail |
| 116 external_test/30: Fail |
| 117 external_test/31: Fail |
| 118 |
| 119 |
104 # Implementation errors (library or generated code). | 120 # Implementation errors (library or generated code). |
105 generic_deep_test: Fail # Expect.isTrue(false) fails. | 121 generic_deep_test: Fail # Expect.isTrue(false) fails. |
106 generic_inheritance_test: Fail # Expect.isTrue(false) fails. | 122 generic_inheritance_test: Fail # Expect.isTrue(false) fails. |
107 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. | 123 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. |
108 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. | 124 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. |
109 instanceof3_test: Fail # cannot resolve type UndeclaredType. | 125 instanceof3_test: Fail # cannot resolve type UndeclaredType. |
110 library_private_in_constructor_test: Fail # Issue 2620. | 126 library_private_in_constructor_test: Fail # Issue 2620. |
111 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. | 127 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. |
112 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. | 128 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. |
113 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. | 129 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 | 274 |
259 | 275 |
260 [ $compiler == dart2js && $runtime == safari ] | 276 [ $compiler == dart2js && $runtime == safari ] |
261 arithmetic_test: Skip # BUG(3492): Times out. | 277 arithmetic_test: Skip # BUG(3492): Times out. |
262 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 278 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
263 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 279 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
264 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 280 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
265 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 281 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
266 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 282 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
267 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 283 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
OLD | NEW |