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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
90 method_name_test: Fail # Parsing of pseudo keywords. | 90 method_name_test: Fail # Parsing of pseudo keywords. |
91 method_override_test: Fail # cannot resolve type GetKeysFunctionType | 91 method_override_test: Fail # cannot resolve type GetKeysFunctionType |
92 method_override2_test/00: Fail # accepts illegal override | 92 method_override2_test/00: Fail # accepts illegal override |
93 method_override2_test/01: Fail # accepts illegal override | 93 method_override2_test/01: Fail # accepts illegal override |
94 method_override2_test/02: Fail # accepts illegal override | 94 method_override2_test/02: Fail # accepts illegal override |
95 method_override2_test/03: Fail # accepts illegal override | 95 method_override2_test/03: Fail # accepts illegal override |
96 parameter_initializer6_negative_test: Fail # Issue 3502 | 96 parameter_initializer6_negative_test: Fail # Issue 3502 |
97 named_parameters2_test: Fail # Unimplemented non-matching static call | 97 named_parameters2_test: Fail # Unimplemented non-matching static call |
98 named_parameters3_test: Fail # Unimplemented non-matching static call | 98 named_parameters3_test: Fail # Unimplemented non-matching static call |
99 named_parameters4_test: Fail # Unimplemented non-matching static call | 99 named_parameters4_test: Fail # Unimplemented non-matching static call |
100 named_parameters_aggregated_test/01: Fail # not handling def-vals for optional p arams | |
ahe
2012/08/23 11:39:25
Please avoid abbreviations. It actually took me a
| |
101 named_parameters_aggregated_test/03: Fail # not handling def-vals for optional p arams | |
100 operator6_test: Fail # Constant folding of bit-operations does not agree with ru ntime behavior. Issue 2887. | 102 operator6_test: Fail # Constant folding of bit-operations does not agree with ru ntime behavior. Issue 2887. |
101 pseudo_kw_test: Fail # Unexpected token '(' | 103 pseudo_kw_test: Fail # Unexpected token '(' |
102 super_implicit_closure_test: Fail # internal error: super property read not impl emented | 104 super_implicit_closure_test: Fail # internal error: super property read not impl emented |
103 super_operator_test: Fail # internal error: super property store not implemented | 105 super_operator_test: Fail # internal error: super property store not implemented |
104 switch_label_test: Fail # error: target of continue is not a loop or switch case | 106 switch_label_test: Fail # error: target of continue is not a loop or switch case |
105 setter_no_getter_call_test/01: Crash # Issue 4361 | 107 setter_no_getter_call_test/01: Crash # Issue 4361 |
106 | 108 |
107 | 109 |
108 # External tests. | 110 # External tests. |
109 external_test/01: Fail | 111 external_test/01: Fail |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
294 [ $compiler == dart2js && $runtime == safari ] | 296 [ $compiler == dart2js && $runtime == safari ] |
295 arithmetic_test: Skip # BUG(3492): Times out. | 297 arithmetic_test: Skip # BUG(3492): Times out. |
296 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' | 298 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' |
297 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' | 299 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' |
298 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 300 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
299 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 301 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
300 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 302 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
301 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 303 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
302 naming_test: Fail | 304 naming_test: Fail |
303 | 305 |
OLD | NEW |