| 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 malformed_test/05: MissingCompileTimeError # Issue 12695 | 7 malformed_test/05: MissingCompileTimeError # Issue 12695 |
| 8 malformed_test/06: MissingCompileTimeError # Issue 12695 | 8 malformed_test/06: MissingCompileTimeError # Issue 12695 |
| 9 full_stacktrace1_test: Pass, RuntimeError # Issue 12698 | 9 full_stacktrace1_test: Pass, RuntimeError # Issue 12698 |
| 10 full_stacktrace2_test: Pass, RuntimeError # Issue 12698 | 10 full_stacktrace2_test: Pass, RuntimeError # Issue 12698 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 mixin_forwarding_constructor2_test: Fail # Issue 13641 | 206 mixin_forwarding_constructor2_test: Fail # Issue 13641 |
| 207 | 207 |
| 208 mixin_with_two_implicit_constructors_test: Fail # Issue 11889 | 208 mixin_with_two_implicit_constructors_test: Fail # Issue 11889 |
| 209 | 209 |
| 210 # Malformed types not handled as unresolved: | 210 # Malformed types not handled as unresolved: |
| 211 import_core_prefix_test: Fail # Issue 13081 | 211 import_core_prefix_test: Fail # Issue 13081 |
| 212 prefix16_test: Fail # Issue 13081 | 212 prefix16_test: Fail # Issue 13081 |
| 213 prefix22_test: Fail # Issue 13081 | 213 prefix22_test: Fail # Issue 13081 |
| 214 | 214 |
| 215 # Calling unresolved class constructor: | 215 # Calling unresolved class constructor: |
| 216 call_nonexistent_constructor_test: Fail # Issue 13082 | 216 call_nonexistent_constructor_test/01: Fail # Issue 13082 |
| 217 call_nonexistent_constructor_test/02: Fail # Issue 13082 |
| 217 | 218 |
| 218 bad_override_test/01: Fail # Issue 11496 | 219 bad_override_test/01: Fail # Issue 11496 |
| 219 bad_override_test/02: Fail # Issue 11496 | 220 bad_override_test/02: Fail # Issue 11496 |
| 220 | 221 |
| 221 constructor_named_arguments_test/01: Fail # Issue 5519 | 222 constructor_named_arguments_test/01: Fail # Issue 5519 |
| 222 not_enough_positional_arguments_test/01: Fail # Issue 12839 | 223 not_enough_positional_arguments_test/01: Fail # Issue 12839 |
| 223 not_enough_positional_arguments_test/02: Fail # Issue 12839 | 224 not_enough_positional_arguments_test/02: Fail # Issue 12839 |
| 224 not_enough_positional_arguments_test/05: Fail # Issue 12839 | 225 not_enough_positional_arguments_test/05: Fail # Issue 12839 |
| 225 | 226 |
| 226 metadata_test: Fail # Issue 12762 | 227 metadata_test: Fail # Issue 12762 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 super_call4_test: Fail, OK # hardcoded names. | 289 super_call4_test: Fail, OK # hardcoded names. |
| 289 | 290 |
| 290 [ $minified ] | 291 [ $minified ] |
| 291 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. | 292 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. |
| 292 | 293 |
| 293 [ $runtime == ie9 ] | 294 [ $runtime == ie9 ] |
| 294 stack_trace_test: Fail, OK # Stack traces not available in IE9. | 295 stack_trace_test: Fail, OK # Stack traces not available in IE9. |
| 295 | 296 |
| 296 [ $compiler == dart2js && $host_checked ] | 297 [ $compiler == dart2js && $host_checked ] |
| 297 const_factory_with_body_test/01: Crash | 298 const_factory_with_body_test/01: Crash |
| OLD | NEW |