| 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 && $csp ] | 5 [ $compiler == dart2js && $csp ] |
| 6 deferred_mixin_test: RuntimeError # Issue 21863 | 6 deferred_mixin_test: RuntimeError # Issue 21863 |
| 7 | 7 |
| 8 [ $compiler == dart2js || $compiler == dart2dart ] | 8 [ $compiler == dart2js || $compiler == dart2dart ] |
| 9 symbol_literal_test/*: Fail # Issue 21825 | 9 symbol_literal_test/*: Fail # Issue 21825 |
| 10 constructor_duplicate_final_test/01: Fail # Issue 13363 | 10 constructor_duplicate_final_test/01: Fail # Issue 13363 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 string_interpolate_null_test: Fail # Issue: 7413 | 179 string_interpolate_null_test: Fail # Issue: 7413 |
| 180 call_through_null_getter_test: Fail | 180 call_through_null_getter_test: Fail |
| 181 closure3_test: Fail | 181 closure3_test: Fail |
| 182 execute_finally3_test: Fail | 182 execute_finally3_test: Fail |
| 183 method_invocation_test: Fail | 183 method_invocation_test: Fail |
| 184 stack_overflow_test: Fail | 184 stack_overflow_test: Fail |
| 185 stack_overflow_stacktrace_test: Fail | 185 stack_overflow_stacktrace_test: Fail |
| 186 closure_call_wrong_argument_count_negative_test: Skip | 186 closure_call_wrong_argument_count_negative_test: Skip |
| 187 label_test: Skip | 187 label_test: Skip |
| 188 | 188 |
| 189 [ $compiler == dart2dart && $builder_tag == new_backend && $minified == true ] |
| 190 # This test fails in minified, because the type-argument is |
| 191 # renamed, but the symbol naming it it is not. |
| 192 type_variable_conflict2_test/01: RuntimeError # Issue 16180 |
| 193 |
| 189 [ $compiler == dart2dart && $builder_tag == new_backend && $minified == false ] | 194 [ $compiler == dart2dart && $builder_tag == new_backend && $minified == false ] |
| 190 # This test happens not to fail in minified, because the type-argument is | 195 # This test happens not to fail in minified, because the type-argument is |
| 191 # renamed, but the unresolved reference to it is not. | 196 # renamed, but the unresolved reference to it is not. |
| 192 type_variable_conflict2_test/04: Fail # Issue 19725 | 197 type_variable_conflict2_test/04: Fail # Issue 19725 |
| 193 | 198 |
| 194 [ $compiler == dart2dart && $minified && $builder_tag != new_backend ] | 199 [ $compiler == dart2dart && $minified && $builder_tag != new_backend ] |
| 195 type_variable_conflict2_test/01: RuntimeError # Issue 16180 | 200 type_variable_conflict2_test/01: RuntimeError # Issue 16180 |
| 196 | 201 |
| 197 [ $compiler == dart2dart ] | 202 [ $compiler == dart2dart ] |
| 198 type_variable_conflict2_test/02: MissingCompileTimeError # Issue 19725 | 203 type_variable_conflict2_test/02: MissingCompileTimeError # Issue 19725 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 267 |
| 263 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names). | 268 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names). |
| 264 super_call4_test: Fail, OK # hardcoded names. | 269 super_call4_test: Fail, OK # hardcoded names. |
| 265 | 270 |
| 266 [ $minified ] | 271 [ $minified ] |
| 267 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. | 272 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. |
| 268 | 273 |
| 269 [ $compiler == dart2js && $runtime == d8 && $system == windows ] | 274 [ $compiler == dart2js && $runtime == d8 && $system == windows ] |
| 270 *deferred*: Skip # Issue 17458 | 275 *deferred*: Skip # Issue 17458 |
| 271 cha_deopt*: Skip # Issue 17458 | 276 cha_deopt*: Skip # Issue 17458 |
| OLD | NEW |