| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 implicit_scope_test: Fail # duplicate definition of a="bar" | 155 implicit_scope_test: Fail # duplicate definition of a="bar" |
| 156 library_prefixes_test: Fail # other is not a type | 156 library_prefixes_test: Fail # other is not a type |
| 157 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). | 157 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2'
(bad exception mapping). |
| 158 many_generic_instanceof_test: Fail # cannot resolve type T | 158 many_generic_instanceof_test: Fail # cannot resolve type T |
| 159 method_binding_test: Fail # internal error: super property read not implemented. | 159 method_binding_test: Fail # internal error: super property read not implemented. |
| 160 method_override_test: Fail # cannot resolve type GetKeysFunctionType | 160 method_override_test: Fail # cannot resolve type GetKeysFunctionType |
| 161 method_override2_test/00: Fail # accepts illegal override | 161 method_override2_test/00: Fail # accepts illegal override |
| 162 method_override2_test/01: Fail # accepts illegal override | 162 method_override2_test/01: Fail # accepts illegal override |
| 163 method_override2_test/02: Fail # accepts illegal override | 163 method_override2_test/02: Fail # accepts illegal override |
| 164 method_override2_test/03: Fail # accepts illegal override | 164 method_override2_test/03: Fail # accepts illegal override |
| 165 implicit_this_test/02: Fail # instantiation of abstract class | |
| 166 implicit_this_test/03: Fail # instantiation of abstract class | |
| 167 abstract_getter_test/01: Fail # instantiation of abstract class | 165 abstract_getter_test/01: Fail # instantiation of abstract class |
| 168 abstract_factory_constructor_test/01: Fail # instantiation of abstract class | 166 abstract_factory_constructor_test/01: Fail # instantiation of abstract class |
| 169 parameter_initializer6_negative_test: Fail # Issue 3502 | 167 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 170 named_parameters2_test: Fail # Unimplemented non-matching static call | 168 named_parameters2_test: Fail # Unimplemented non-matching static call |
| 171 named_parameters3_test: Fail # Unimplemented non-matching static call | 169 named_parameters3_test: Fail # Unimplemented non-matching static call |
| 172 named_parameters4_test: Fail # Unimplemented non-matching static call | 170 named_parameters4_test: Fail # Unimplemented non-matching static call |
| 173 named_parameters_aggregated_test/01: Fail # Presence of default values for optio
nal params is not properly validated in type definitions. | 171 named_parameters_aggregated_test/01: Fail # Presence of default values for optio
nal params is not properly validated in type definitions. |
| 174 named_parameters_aggregated_test/03: Fail # Presence of default values for optio
nal params is not properly validated in closure types. | 172 named_parameters_aggregated_test/03: Fail # Presence of default values for optio
nal params is not properly validated in closure types. |
| 175 named_parameters_aggregated_test/05: Fail # Absence of positional parameters bef
ore named parameters does not trigger static type warning. | 173 named_parameters_aggregated_test/05: Fail # Absence of positional parameters bef
ore named parameters does not trigger static type warning. |
| 176 pseudo_kw_test: Fail # Unexpected token '(' | 174 pseudo_kw_test: Fail # Unexpected token '(' |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 352 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 355 | 353 |
| 356 [ $compiler == dart2js && $runtime == ff && $system == windows ] | 354 [ $compiler == dart2js && $runtime == ff && $system == windows ] |
| 357 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. | 355 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. |
| 358 first_class_types_test: Fail # http://dartbug.com/5523 | 356 first_class_types_test: Fail # http://dartbug.com/5523 |
| 359 part2_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. | 357 part2_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. |
| 360 part_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. | 358 part_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. |
| 361 export_test: Fail # Issue 5785 | 359 export_test: Fail # Issue 5785 |
| 362 export_cyclic_test: Fail # Issue 5785 | 360 export_cyclic_test: Fail # Issue 5785 |
| 363 generic_creation_test: Fail # Issue 5785l | 361 generic_creation_test: Fail # Issue 5785l |
| OLD | NEW |