| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 external_test/30: Fail | 177 external_test/30: Fail |
| 178 external_test/31: Fail | 178 external_test/31: Fail |
| 179 | 179 |
| 180 | 180 |
| 181 # Implementation errors (library or generated code). | 181 # Implementation errors (library or generated code). |
| 182 generic_deep_test: Fail # Expect.isTrue(false) fails. | 182 generic_deep_test: Fail # Expect.isTrue(false) fails. |
| 183 generic_inheritance_test: Fail # Expect.isTrue(false) fails. | 183 generic_inheritance_test: Fail # Expect.isTrue(false) fails. |
| 184 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. | 184 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. |
| 185 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. | 185 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. |
| 186 instanceof3_test: Fail # cannot resolve type UndeclaredType. | 186 instanceof3_test: Fail # cannot resolve type UndeclaredType. |
| 187 instanceof4_test: Fail # Expect.isTrue(false) fails. |
| 187 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. | 188 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. |
| 188 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. | 189 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. |
| 189 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. | 190 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. |
| 190 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. | 191 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. |
| 191 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. | 192 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. |
| 192 | 193 |
| 193 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 194 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 194 external_test/16: Fail, OK # Bad test: assumes eager loading. | 195 external_test/16: Fail, OK # Bad test: assumes eager loading. |
| 195 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 196 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 196 field6_negative_test: Fail, OK # Bad test: assumes eager loading. | 197 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 | 328 |
| 328 | 329 |
| 329 [ $compiler == dart2js && $runtime == safari ] | 330 [ $compiler == dart2js && $runtime == safari ] |
| 330 arithmetic_test: Skip # BUG(3492): Times out. | 331 arithmetic_test: Skip # BUG(3492): Times out. |
| 331 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 332 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 332 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 333 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 333 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 334 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 334 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 335 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 335 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 336 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 336 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 337 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |