| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 *: Skip | 458 *: Skip |
| 459 | 459 |
| 460 [ $arch == arm ] | 460 [ $arch == arm ] |
| 461 *: Skip | 461 *: Skip |
| 462 | 462 |
| 463 [ $compiler == dart2js && $checked ] | 463 [ $compiler == dart2js && $checked ] |
| 464 assign_static_type_test/01: Fail | 464 assign_static_type_test/01: Fail |
| 465 assign_static_type_test/02: Fail | 465 assign_static_type_test/02: Fail |
| 466 assign_static_type_test/03: Fail | 466 assign_static_type_test/03: Fail |
| 467 assign_static_type_test/04: Fail | 467 assign_static_type_test/04: Fail |
| 468 assign_static_type_test/05: Fail | |
| 469 type_variable_bounds_test/01: Fail | 468 type_variable_bounds_test/01: Fail |
| 470 type_variable_bounds_test/02: Fail | 469 type_variable_bounds_test/02: Fail |
| 471 type_variable_bounds_test/04: Fail | 470 type_variable_bounds_test/04: Fail |
| 472 type_variable_bounds_test/05: Fail | 471 type_variable_bounds_test/05: Fail |
| 473 type_variable_bounds2_test/00: Fail | 472 type_variable_bounds2_test/00: Fail |
| 474 type_variable_bounds2_test/02: Pass # For the wrong reasons. | |
| 475 type_variable_bounds2_test/03: Fail | 473 type_variable_bounds2_test/03: Fail |
| 476 type_variable_bounds2_test/05: Fail | 474 type_variable_bounds2_test/05: Fail |
| 477 type_variable_bounds2_test/06: Pass # For the wrong reasons. | 475 type_variable_bounds2_test/06: Pass # For the wrong reasons. |
| 478 assign_top_method_negative_test: Pass # For the wrong reasons. | 476 assign_top_method_negative_test: Pass # For the wrong reasons. |
| 477 f_bounded_quantification_test/01: Fail |
| 478 f_bounded_quantification_test/02: Fail |
| 479 |
| 480 arithmetic_test: Fail |
| 479 | 481 |
| 480 | 482 |
| 481 [ $compiler == dart2js] | 483 [ $compiler == dart2js] |
| 482 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 484 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| 483 static_initializer_type_error_test: Fail # Checked mode not supported. | 485 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 484 exception_test: Fail # "throw null" throws NullPointerException. | 486 exception_test: Fail # "throw null" throws NullPointerException. |
| 485 | 487 |
| 486 # Compilation errors. | 488 # Compilation errors. |
| 487 ct_const_test: Fail # We don't take the generic type into account yet. | 489 ct_const_test: Fail # We don't take the generic type into account yet. |
| 488 call_operator_test: Fail # Unexpected token 'call' | 490 call_operator_test: Fail # Unexpected token 'call' |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 | 679 |
| 678 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. | 680 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. |
| 679 | 681 |
| 680 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". | 682 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". |
| 681 | 683 |
| 682 [ $compiler == dart2js && $mode == release ] | 684 [ $compiler == dart2js && $mode == release ] |
| 683 assign_top_method_negative_test: Crash | 685 assign_top_method_negative_test: Crash |
| 684 | 686 |
| 685 [ $compiler == dart2js && $runtime == none ] | 687 [ $compiler == dart2js && $runtime == none ] |
| 686 *: Fail, Pass # TODO(ahe): Triage these tests. | 688 *: Fail, Pass # TODO(ahe): Triage these tests. |
| OLD | NEW |