| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 not_enough_positional_arguments_test/05: CompileTimeError # Issue 12838 | 130 not_enough_positional_arguments_test/05: CompileTimeError # Issue 12838 |
| 131 metadata_test: CompileTimeError # Issue 5841 | 131 metadata_test: CompileTimeError # Issue 5841 |
| 132 infinity_test: RuntimeError # Issue 4984 | 132 infinity_test: RuntimeError # Issue 4984 |
| 133 positive_bit_operations_test: RuntimeError # Issue 12795 | 133 positive_bit_operations_test: RuntimeError # Issue 12795 |
| 134 mixin_mixin2_test: RuntimeError # Issue 13109. | 134 mixin_mixin2_test: RuntimeError # Issue 13109. |
| 135 mixin_mixin3_test: RuntimeError # Issue 13109. | 135 mixin_mixin3_test: RuntimeError # Issue 13109. |
| 136 mixin_mixin7_test: RuntimeError # Issue 13109. | 136 mixin_mixin7_test: RuntimeError # Issue 13109. |
| 137 mixin_regress_13688_test: RuntimeError # Issue 13109. | 137 mixin_regress_13688_test: RuntimeError # Issue 13109. |
| 138 modulo_test: RuntimeError # Issue 15246 | 138 modulo_test: RuntimeError # Issue 15246 |
| 139 truncdiv_test: RuntimeError # Issue 15246 | 139 truncdiv_test: RuntimeError # Issue 15246 |
| 140 invocation_mirror2_test: RuntimeError # Issue 6490 (wrong retval). |
| 140 | 141 |
| 141 # Compilation errors. | 142 # Compilation errors. |
| 142 const_var_test: CompileTimeError # Issue 12793 | 143 const_var_test: CompileTimeError # Issue 12793 |
| 143 map_literal3_test: CompileTimeError # Issue 12793 | 144 map_literal3_test: CompileTimeError # Issue 12793 |
| 144 method_override5_test: RuntimeError # Issue 12809 | 145 method_override5_test: RuntimeError # Issue 12809 |
| 145 external_test/13: CompileTimeError # Issue 12887 | 146 external_test/13: CompileTimeError # Issue 12887 |
| 146 list_literal4_test: RuntimeError # Issue 12890 | 147 list_literal4_test: RuntimeError # Issue 12890 |
| 147 map_literal4_test: RuntimeError # Issue 12891 | 148 map_literal4_test: RuntimeError # Issue 12891 |
| 148 built_in_identifier_test/01: CompileTimeError # Issue 13022 | 149 built_in_identifier_test/01: CompileTimeError # Issue 13022 |
| 149 | 150 |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 super_call4_test: Fail, OK # hardcoded names. | 311 super_call4_test: Fail, OK # hardcoded names. |
| 311 | 312 |
| 312 [ $minified ] | 313 [ $minified ] |
| 313 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. | 314 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. |
| 314 | 315 |
| 315 [ $runtime == ie9 ] | 316 [ $runtime == ie9 ] |
| 316 stack_trace_test: Fail, OK # Stack traces not available in IE9. | 317 stack_trace_test: Fail, OK # Stack traces not available in IE9. |
| 317 | 318 |
| 318 [ $compiler == dart2js && $host_checked ] | 319 [ $compiler == dart2js && $host_checked ] |
| 319 const_factory_with_body_test/01: Crash | 320 const_factory_with_body_test/01: Crash |
| OLD | NEW |