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 bad_constructor_test/05: CompileTimeError # Issue 13669 | 6 bad_constructor_test/05: CompileTimeError # Issue 13669 |
7 block_scope_test: CompileTimeError # Issue 13204. | 7 block_scope_test: CompileTimeError # Issue 13204. |
8 malformed_test/05: MissingCompileTimeError # Issue 12695 | 8 malformed_test/05: MissingCompileTimeError # Issue 12695 |
9 malformed_test/06: MissingCompileTimeError # Issue 12695 | 9 malformed_test/06: MissingCompileTimeError # Issue 12695 |
10 malformed_inheritance_test/07: MissingCompileTimeError # Issue 13994 | 10 malformed_inheritance_test/07: MissingCompileTimeError # Issue 13994 |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 | 261 |
262 malbounded_type_literal_test: Fail # Issue 13960 | 262 malbounded_type_literal_test: Fail # Issue 13960 |
263 | 263 |
264 # DartVM problem. | 264 # DartVM problem. |
265 constructor5_test: Fail | 265 constructor5_test: Fail |
266 constructor6_test: Fail | 266 constructor6_test: Fail |
267 closure_in_initializer_test: Fail | 267 closure_in_initializer_test: Fail |
268 super_first_constructor_test: Fail | 268 super_first_constructor_test: Fail |
269 throwing_lazy_variable_test: Fail # Issue 5802 | 269 throwing_lazy_variable_test: Fail # Issue 5802 |
270 f_bounded_equality_test: RuntimeError # Issue 14000 | 270 f_bounded_equality_test: RuntimeError # Issue 14000 |
| 271 malbounded_instantiation_test/01: Crash # Issue 14118 |
271 | 272 |
272 # Minified mode failures. | 273 # Minified mode failures. |
273 | 274 |
274 new_expression_type_args_test/00: Fail # Wrongly reports compile-time error. | 275 new_expression_type_args_test/00: Fail # Wrongly reports compile-time error. |
275 new_expression_type_args_test/01: Fail # Wrongly reports compile-time error. | 276 new_expression_type_args_test/01: Fail # Wrongly reports compile-time error. |
276 | 277 |
277 # Only checked mode reports an error on type assignment | 278 # Only checked mode reports an error on type assignment |
278 # problems in compile time constants. | 279 # problems in compile time constants. |
279 compile_time_constant_checked_test/02: Fail, OK | 280 compile_time_constant_checked_test/02: Fail, OK |
280 compile_time_constant_checked2_test/01: Fail, OK | 281 compile_time_constant_checked2_test/01: Fail, OK |
(...skipping 20 matching lines...) Expand all Loading... |
301 import_core_prefix_test: Pass | 302 import_core_prefix_test: Pass |
302 prefix22_test: Pass | 303 prefix22_test: Pass |
303 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names). | 304 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names). |
304 super_call4_test: Fail, OK # hardcoded names. | 305 super_call4_test: Fail, OK # hardcoded names. |
305 | 306 |
306 [ $minified ] | 307 [ $minified ] |
307 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. | 308 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. |
308 | 309 |
309 [ $runtime == ie9 ] | 310 [ $runtime == ie9 ] |
310 stack_trace_test: Fail, OK # Stack traces not available in IE9. | 311 stack_trace_test: Fail, OK # Stack traces not available in IE9. |
OLD | NEW |