| 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 [ $compiler == frog && $runtime == none ] | 447 [ $compiler == frog && $runtime == none ] |
| 448 *: Skip | 448 *: Skip |
| 449 | 449 |
| 450 [ $arch == simarm ] | 450 [ $arch == simarm ] |
| 451 *: Skip | 451 *: Skip |
| 452 | 452 |
| 453 [ $arch == arm ] | 453 [ $arch == arm ] |
| 454 *: Skip | 454 *: Skip |
| 455 | 455 |
| 456 [ $compiler == dart2js && $checked ] | 456 [ $compiler == dart2js && $checked ] |
| 457 *: Skip | 457 assign_static_type_test/01: Fail |
| 458 assign_static_type_test/02: Fail |
| 459 assign_static_type_test/03: Fail |
| 460 assign_static_type_test/04: Fail |
| 461 assign_static_type_test/05: Fail |
| 462 type_variable_bounds_test/01: Fail |
| 463 type_variable_bounds_test/02: Fail |
| 464 type_variable_bounds_test/04: Fail |
| 465 type_variable_bounds_test/05: Fail |
| 466 type_variable_bounds2_test/00: Fail |
| 467 type_variable_bounds2_test/02: Pass # For the wrong reasons. |
| 468 type_variable_bounds2_test/03: Fail |
| 469 type_variable_bounds2_test/05: Fail |
| 470 type_variable_bounds2_test/06: Pass # For the wrong reasons. |
| 471 assign_top_method_negative_test: Pass # For the wrong reasons. |
| 458 | 472 |
| 459 | 473 |
| 460 [ $compiler == dart2js] | 474 [ $compiler == dart2js] |
| 461 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 475 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| 462 static_initializer_type_error_test: Fail # Checked mode not supported. | 476 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 463 | 477 |
| 464 | 478 |
| 465 # Compilation errors. | 479 # Compilation errors. |
| 466 ct_const_test: Fail # We don't take the generic type into account yet. | 480 ct_const_test: Fail # We don't take the generic type into account yet. |
| 467 call_operator_test: Fail # Unexpected token 'call' | 481 call_operator_test: Fail # Unexpected token 'call' |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 | 671 |
| 658 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. | 672 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. |
| 659 | 673 |
| 660 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". | 674 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". |
| 661 | 675 |
| 662 [ $compiler == dart2js && $mode == release ] | 676 [ $compiler == dart2js && $mode == release ] |
| 663 assign_top_method_negative_test: Crash | 677 assign_top_method_negative_test: Crash |
| 664 | 678 |
| 665 [ $compiler == dart2js && $runtime == none ] | 679 [ $compiler == dart2js && $runtime == none ] |
| 666 *: Fail, Pass # TODO(ahe): Triage these tests. | 680 *: Fail, Pass # TODO(ahe): Triage these tests. |
| OLD | NEW |