| 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 | 432 |
| 433 throw_expr_test: Fail | 433 throw_expr_test: Fail |
| 434 metadata_test: Fail | 434 metadata_test: Fail |
| 435 # Fails in conservative mode, issue 4935, passes in minifinying mode. | 435 # Fails in conservative mode, issue 4935, passes in minifinying mode. |
| 436 bad_constructor_test/04: Fail | 436 bad_constructor_test/04: Fail |
| 437 bad_constructor_test/05: Fail | 437 bad_constructor_test/05: Fail |
| 438 bad_constructor_test/06: Fail | 438 bad_constructor_test/06: Fail |
| 439 argument_definition_test/*: Skip # Not implemented. | 439 argument_definition_test/*: Skip # Not implemented. |
| 440 argument_definition2_test: Skip # Not implemented. Fails in minified tests. | 440 argument_definition2_test: Skip # Not implemented. Fails in minified tests. |
| 441 argument_definition3_test: Skip # Not implemented. Fails in minified tests. | 441 argument_definition3_test: Skip # Not implemented. Fails in minified tests. |
| 442 argument_definition4_test: Skip # Not implemented. Fails in minified tests. |
| 442 const_var_test: Pass, Fail # Map literals take 2 type arguments. | 443 const_var_test: Pass, Fail # Map literals take 2 type arguments. |
| 443 map_literal3_test: Fail # Map literals take 2 type arguments. | 444 map_literal3_test: Fail # Map literals take 2 type arguments. |
| 444 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 445 class_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 445 field1_negative_test: Fail, OK # Bad test: assumes eager loading. | 446 field1_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 446 field6_negative_test: Fail, OK # Bad test: assumes eager loading. | 447 field6_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 447 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. | 448 interface_cycle_negative_test: Fail, OK # Bad test: assumes eager loading. |
| 448 # Common problems with dart2js. In illegal family, invalid | 449 # Common problems with dart2js. In illegal family, invalid |
| 449 # declarations are simply not parsed. In pseudo kw dart2js | 450 # declarations are simply not parsed. In pseudo kw dart2js |
| 450 # chokes on things like typedef(x) => "typedef $x" and alike. | 451 # chokes on things like typedef(x) => "typedef $x" and alike. |
| 451 abstract_syntax_test/01: Fail | 452 abstract_syntax_test/01: Fail |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 *: Skip | 566 *: Skip |
| 566 | 567 |
| 567 [ $arch == simarm ] | 568 [ $arch == simarm ] |
| 568 *: Skip | 569 *: Skip |
| 569 | 570 |
| 570 [ $arch == mips ] | 571 [ $arch == mips ] |
| 571 *: Skip | 572 *: Skip |
| 572 | 573 |
| 573 [ $arch == simmips ] | 574 [ $arch == simmips ] |
| 574 *: Skip | 575 *: Skip |
| OLD | NEW |