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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 generic_deep_test: Fail # Expect.isTrue(false) fails. | 136 generic_deep_test: Fail # Expect.isTrue(false) fails. |
137 generic_inheritance_test: Fail # Expect.isTrue(false) fails. | 137 generic_inheritance_test: Fail # Expect.isTrue(false) fails. |
138 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. | 138 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. |
139 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. | 139 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. |
140 instanceof3_test: Fail # cannot resolve type UndeclaredType. | 140 instanceof3_test: Fail # cannot resolve type UndeclaredType. |
141 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. | 141 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. |
142 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. | 142 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. |
143 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. | 143 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. |
144 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. | 144 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. |
145 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. | 145 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. |
146 argument_definition_test/none: Fail # Argument definition test always returns tr
ue. | |
147 | 146 |
148 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 147 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
149 external_test/16: Fail, OK # Bad test: assumes eager loading. | 148 external_test/16: Fail, OK # Bad test: assumes eager loading. |
150 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 149 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
151 field6_negative_test: Fail, OK # Bad test: assumes eager loading. | 150 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
152 field7_negative_test: Fail, OK # Bad test: assumes eager loading. | 151 field7_negative_test: Fail, OK # Bad test: assumes eager loading. |
153 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 152 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
154 syntax_test/47: Fail, OK # Bad test: assumes eager loading. | 153 syntax_test/47: Fail, OK # Bad test: assumes eager loading. |
155 | 154 |
156 | 155 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 | 284 |
286 [ $compiler == dart2js && $runtime == safari ] | 285 [ $compiler == dart2js && $runtime == safari ] |
287 arithmetic_test: Skip # BUG(3492): Times out. | 286 arithmetic_test: Skip # BUG(3492): Times out. |
288 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 287 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
289 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 288 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
290 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 289 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
291 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 290 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
292 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 291 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
293 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 292 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
294 | 293 |
OLD | NEW |