| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 final_syntax_test/03: Fail # http://dartbug.com/5519 | 192 final_syntax_test/03: Fail # http://dartbug.com/5519 |
| 193 final_syntax_test/04: Fail # http://dartbug.com/5519 | 193 final_syntax_test/04: Fail # http://dartbug.com/5519 |
| 194 getter_no_setter_test/01: Fail # http://dartbug.com/5519 | 194 getter_no_setter_test/01: Fail # http://dartbug.com/5519 |
| 195 isnot_malformed_type_test/01: Fail # http://dartbug.com/5519 | 195 isnot_malformed_type_test/01: Fail # http://dartbug.com/5519 |
| 196 named_parameters_aggregated_test/01: Fail # http://dartbug.com/5519 | 196 named_parameters_aggregated_test/01: Fail # http://dartbug.com/5519 |
| 197 named_parameters_aggregated_test/03: Fail # http://dartbug.com/5519 | 197 named_parameters_aggregated_test/03: Fail # http://dartbug.com/5519 |
| 198 not_enough_positional_arguments_test/01: Fail # http://dartbug.com/5519 | 198 not_enough_positional_arguments_test/01: Fail # http://dartbug.com/5519 |
| 199 | 199 |
| 200 metadata_test: Fail | 200 metadata_test: Fail |
| 201 # Fails in conservative mode, issue 4935, passes in minifinying mode. | 201 # Fails in conservative mode, issue 4935, passes in minifinying mode. |
| 202 bad_constructor_test/04: Fail | |
| 203 bad_constructor_test/05: Fail | |
| 204 bad_constructor_test/06: Fail | |
| 205 argument_definition_test/*: Skip # Not implemented. | 202 argument_definition_test/*: Skip # Not implemented. |
| 206 const_var_test: Pass, Fail # Map literals take 2 type arguments. | 203 const_var_test: Pass, Fail # Map literals take 2 type arguments. |
| 207 map_literal3_test: Fail # Map literals take 2 type arguments. | 204 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 208 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 205 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 209 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 206 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 210 # Common problems with dart2js. In illegal family, invalid | 207 # Common problems with dart2js. In illegal family, invalid |
| 211 # declarations are simply not parsed. In pseudo kw dart2js | 208 # declarations are simply not parsed. In pseudo kw dart2js |
| 212 # chokes on things like typedef(x) => "typedef $x" and alike. | 209 # chokes on things like typedef(x) => "typedef $x" and alike. |
| 213 abstract_syntax_test/01: Fail | 210 abstract_syntax_test/01: Fail |
| 214 abstract_syntax_test/02: Fail | 211 abstract_syntax_test/02: Fail |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 [ $arch == mips ] | 321 [ $arch == mips ] |
| 325 *: Skip | 322 *: Skip |
| 326 | 323 |
| 327 | 324 |
| 328 [ $arch == simmips ] | 325 [ $arch == simmips ] |
| 329 arithmetic_test: Crash # Too far relative branch. | 326 arithmetic_test: Crash # Too far relative branch. |
| 330 large_implicit_getter_test: Crash # Too far relative branch. | 327 large_implicit_getter_test: Crash # Too far relative branch. |
| 331 # TODO(zra): Check to see if the ASSERT that fails in debug mode is correct | 328 # TODO(zra): Check to see if the ASSERT that fails in debug mode is correct |
| 332 stack_overflow_test: Crash, Pass # Passes in release mode. | 329 stack_overflow_test: Crash, Pass # Passes in release mode. |
| 333 stack_overflow_stacktrace_test: Crash, Pass # Passes in release mode. | 330 stack_overflow_stacktrace_test: Crash, Pass # Passes in release mode. |
| OLD | NEW |