| 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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
| 6 # current state of the language. | 6 # current state of the language. |
| 7 | 7 |
| 8 # In order to maintain maximum test coverage for all builds, | 8 # In order to maintain maximum test coverage for all builds, |
| 9 # please use the following procedure to mark a test | 9 # please use the following procedure to mark a test |
| 10 # failed on architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 final_syntax_test/03: Fail # http://dartbug.com/5519 | 199 final_syntax_test/03: Fail # http://dartbug.com/5519 |
| 200 final_syntax_test/04: Fail # http://dartbug.com/5519 | 200 final_syntax_test/04: Fail # http://dartbug.com/5519 |
| 201 getter_no_setter_test/01: Fail # http://dartbug.com/5519 | 201 getter_no_setter_test/01: Fail # http://dartbug.com/5519 |
| 202 isnot_malformed_type_test/01: Fail # http://dartbug.com/5519 | 202 isnot_malformed_type_test/01: Fail # http://dartbug.com/5519 |
| 203 named_parameters_aggregated_test/01: Fail # http://dartbug.com/5519 | 203 named_parameters_aggregated_test/01: Fail # http://dartbug.com/5519 |
| 204 named_parameters_aggregated_test/03: Fail # http://dartbug.com/5519 | 204 named_parameters_aggregated_test/03: Fail # http://dartbug.com/5519 |
| 205 not_enough_positional_arguments_test/01: Fail # http://dartbug.com/5519 | 205 not_enough_positional_arguments_test/01: Fail # http://dartbug.com/5519 |
| 206 | 206 |
| 207 metadata_test: Fail | 207 metadata_test: Fail |
| 208 # Fails in conservative mode, issue 4935, passes in minifinying mode. | 208 # Fails in conservative mode, issue 4935, passes in minifinying mode. |
| 209 bad_constructor_test/04: Fail | |
| 210 bad_constructor_test/05: Fail | |
| 211 bad_constructor_test/06: Fail | |
| 212 argument_definition_test/*: Skip # Not implemented. | 209 argument_definition_test/*: Skip # Not implemented. |
| 213 const_var_test: Pass, Fail # Map literals take 2 type arguments. | 210 const_var_test: Pass, Fail # Map literals take 2 type arguments. |
| 214 map_literal3_test: Fail # Map literals take 2 type arguments. | 211 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 215 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 212 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 216 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 213 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 217 # Common problems with dart2js. In illegal family, invalid | 214 # Common problems with dart2js. In illegal family, invalid |
| 218 # declarations are simply not parsed. In pseudo kw dart2js | 215 # declarations are simply not parsed. In pseudo kw dart2js |
| 219 # chokes on things like typedef(x) => "typedef $x" and alike. | 216 # chokes on things like typedef(x) => "typedef $x" and alike. |
| 220 abstract_syntax_test/01: Fail | 217 abstract_syntax_test/01: Fail |
| 221 abstract_syntax_test/02: Fail | 218 abstract_syntax_test/02: Fail |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 | 330 |
| 334 [ $arch == mips ] | 331 [ $arch == mips ] |
| 335 *: Skip | 332 *: Skip |
| 336 | 333 |
| 337 | 334 |
| 338 [ $arch == simmips ] | 335 [ $arch == simmips ] |
| 339 arithmetic_test: Crash # Too far relative branch. | 336 arithmetic_test: Crash # Too far relative branch. |
| 340 large_implicit_getter_test: Crash # Too far relative branch. | 337 large_implicit_getter_test: Crash # Too far relative branch. |
| 341 stack_overflow_test: Crash | 338 stack_overflow_test: Crash |
| 342 stack_overflow_stacktrace_test: Crash | 339 stack_overflow_stacktrace_test: Crash |
| OLD | NEW |