| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 factory_redirection_test/09: Fail # Issue 12753 | 278 factory_redirection_test/09: Fail # Issue 12753 |
| 279 | 279 |
| 280 malbounded_type_literal_test: Fail # Issue 13960 | 280 malbounded_type_literal_test: Fail # Issue 13960 |
| 281 | 281 |
| 282 # DartVM problem. | 282 # DartVM problem. |
| 283 constructor5_test: Fail | 283 constructor5_test: Fail |
| 284 constructor6_test: Fail | 284 constructor6_test: Fail |
| 285 closure_in_initializer_test: Fail | 285 closure_in_initializer_test: Fail |
| 286 super_first_constructor_test: Fail | 286 super_first_constructor_test: Fail |
| 287 throwing_lazy_variable_test: Fail # Issue 5802 | 287 throwing_lazy_variable_test: Fail # Issue 5802 |
| 288 f_bounded_equality_test: RuntimeError # Issue 14000 |
| 288 | 289 |
| 289 # Minified mode failures. | 290 # Minified mode failures. |
| 290 | 291 |
| 291 new_expression_type_args_test/00: Fail # Wrongly reports compile-time error. | 292 new_expression_type_args_test/00: Fail # Wrongly reports compile-time error. |
| 292 new_expression_type_args_test/01: Fail # Wrongly reports compile-time error. | 293 new_expression_type_args_test/01: Fail # Wrongly reports compile-time error. |
| 293 | 294 |
| 294 # Only checked mode reports an error on type assignment | 295 # Only checked mode reports an error on type assignment |
| 295 # problems in compile time constants. | 296 # problems in compile time constants. |
| 296 compile_time_constant_checked_test/02: Fail, OK | 297 compile_time_constant_checked_test/02: Fail, OK |
| 297 compile_time_constant_checked2_test/01: Fail, OK | 298 compile_time_constant_checked2_test/01: Fail, OK |
| (...skipping 20 matching lines...) Expand all Loading... |
| 318 import_core_prefix_test: Pass | 319 import_core_prefix_test: Pass |
| 319 prefix22_test: Pass | 320 prefix22_test: Pass |
| 320 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names). | 321 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names). |
| 321 super_call4_test: Fail, OK # hardcoded names. | 322 super_call4_test: Fail, OK # hardcoded names. |
| 322 | 323 |
| 323 [ $minified ] | 324 [ $minified ] |
| 324 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. | 325 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. |
| 325 | 326 |
| 326 [ $runtime == ie9 ] | 327 [ $runtime == ie9 ] |
| 327 stack_trace_test: Fail, OK # Stack traces not available in IE9. | 328 stack_trace_test: Fail, OK # Stack traces not available in IE9. |
| OLD | NEW |