| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. | 125 instanceof2_test: Fail # Expect.equals(expected: <true>, actual: <false>) fails. |
| 126 instanceof3_test: Fail # cannot resolve type UndeclaredType. | 126 instanceof3_test: Fail # cannot resolve type UndeclaredType. |
| 127 library_private_in_constructor_test: Fail # Issue 2620. | 127 library_private_in_constructor_test: Fail # Issue 2620. |
| 128 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. | 128 list_literal4_test: Fail # Illegal argument(s): 0 -- checked mode test. |
| 129 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. | 129 map_literal4_test: Fail # Attempt to modify an immutable object -- checked mode
test. |
| 130 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. | 130 named_parameters_type_test: Fail # Expect.equals(expected: <111>, actual: <0>) f
ails. -- checked mode test. |
| 131 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. | 131 type_checks_in_factory_method_test: Fail # Expect.equals(expected: <true>, actua
l: <false>) fails. -- checked mode test. |
| 132 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. | 132 type_dartc_test: Fail # Expect.equals(expected: <1>, actual: <0>) -- checked mod
e test. |
| 133 | 133 |
| 134 | 134 |
| 135 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 136 external_test/16: Fail, OK # Bad test: assumes eager loading. |
| 137 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 138 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 139 field7_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 140 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 141 syntax_test/47: Fail, OK # Bad test: assumes eager loading. |
| 142 |
| 143 |
| 135 # | 144 # |
| 136 # The following tests are all semantic tests that we can rely on dartc | 145 # The following tests are all semantic tests that we can rely on dartc |
| 137 # catching for now. | 146 # catching for now. |
| 138 # | 147 # |
| 139 abstract_static_negative_test: Fail, OK # Negative language test. | 148 abstract_static_negative_test: Fail, OK # Negative language test. |
| 140 abstract_syntax_test/01: Fail, OK # Negative language test. | 149 abstract_syntax_test/01: Fail, OK # Negative language test. |
| 141 abstract_syntax_test/02: Fail, OK # Negative language test. | 150 abstract_syntax_test/02: Fail, OK # Negative language test. |
| 142 assign_top_method_negative_test: Fail, OK # Negative language test. | 151 assign_top_method_negative_test: Fail, OK # Negative language test. |
| 143 class_extends_negative_test: Fail, OK # Negative language test. | 152 class_extends_negative_test: Fail, OK # Negative language test. |
| 144 const_constructor_syntax_test/01: Fail, OK # Negative language test. | 153 const_constructor_syntax_test/01: Fail, OK # Negative language test. |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 291 |
| 283 | 292 |
| 284 [ $compiler == dart2js && $runtime == safari ] | 293 [ $compiler == dart2js && $runtime == safari ] |
| 285 arithmetic_test: Skip # BUG(3492): Times out. | 294 arithmetic_test: Skip # BUG(3492): Times out. |
| 286 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 295 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 287 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 296 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 288 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 297 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 289 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 298 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 290 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 299 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 291 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 300 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| OLD | NEW |