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