| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 external_test/30: Fail | 124 external_test/30: Fail |
| 125 external_test/31: Fail | 125 external_test/31: Fail |
| 126 | 126 |
| 127 | 127 |
| 128 # Implementation errors (library or generated code). | 128 # Implementation errors (library or generated code). |
| 129 generic_deep_test: Fail # Expect.isTrue(false) fails. | 129 generic_deep_test: Fail # Expect.isTrue(false) fails. |
| 130 generic_inheritance_test: Fail # Expect.isTrue(false) fails. | 130 generic_inheritance_test: Fail # Expect.isTrue(false) fails. |
| 131 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. | 131 generic_parameterized_extends_test: Fail # Expect.isTrue(false) fails. |
| 132 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. | 132 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. |
| 133 instanceof3_test: Fail # cannot resolve type UndeclaredType. | 133 instanceof3_test: Fail # cannot resolve type UndeclaredType. |
| 134 library_private_in_constructor_test: Fail # Issue 2620. | |
| 135 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. | 134 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. |
| 136 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. | 135 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. |
| 137 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. | 136 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. |
| 138 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. | 137 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. |
| 139 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. | 138 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. |
| 140 | 139 |
| 141 | 140 |
| 142 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 141 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 143 external_test/16: Fail, OK # Bad test: assumes eager loading. | 142 external_test/16: Fail, OK # Bad test: assumes eager loading. |
| 144 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 143 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 [ $compiler == dart2js && $runtime == safari ] | 295 [ $compiler == dart2js && $runtime == safari ] |
| 297 arithmetic_test: Skip # BUG(3492): Times out. | 296 arithmetic_test: Skip # BUG(3492): Times out. |
| 298 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 297 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 299 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 298 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 300 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 299 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 301 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 300 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 302 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 301 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 303 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 302 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 304 naming_test: Fail | 303 naming_test: Fail |
| 305 | 304 |
| OLD | NEW |