| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 *: Skip | 452 *: Skip |
| 453 | 453 |
| 454 [ $arch == arm ] | 454 [ $arch == arm ] |
| 455 *: Skip | 455 *: Skip |
| 456 | 456 |
| 457 [ $compiler == dart2js && $checked ] | 457 [ $compiler == dart2js && $checked ] |
| 458 assign_static_type_test/01: Fail | 458 assign_static_type_test/01: Fail |
| 459 assign_static_type_test/02: Fail | 459 assign_static_type_test/02: Fail |
| 460 assign_static_type_test/03: Fail | 460 assign_static_type_test/03: Fail |
| 461 assign_static_type_test/04: Fail | 461 assign_static_type_test/04: Fail |
| 462 assign_static_type_test/05: Fail | |
| 463 type_variable_bounds_test/01: Fail | 462 type_variable_bounds_test/01: Fail |
| 464 type_variable_bounds_test/02: Fail | 463 type_variable_bounds_test/02: Fail |
| 465 type_variable_bounds_test/04: Fail | 464 type_variable_bounds_test/04: Fail |
| 466 type_variable_bounds_test/05: Fail | 465 type_variable_bounds_test/05: Fail |
| 467 type_variable_bounds2_test/00: Fail | 466 type_variable_bounds2_test/00: Fail |
| 468 type_variable_bounds2_test/02: Pass # For the wrong reasons. | |
| 469 type_variable_bounds2_test/03: Fail | 467 type_variable_bounds2_test/03: Fail |
| 470 type_variable_bounds2_test/05: Fail | 468 type_variable_bounds2_test/05: Fail |
| 471 type_variable_bounds2_test/06: Pass # For the wrong reasons. | 469 type_variable_bounds2_test/06: Pass # For the wrong reasons. |
| 472 assign_top_method_negative_test: Pass # For the wrong reasons. | 470 assign_top_method_negative_test: Pass # For the wrong reasons. |
| 471 f_bounded_quantification_test/01: Fail |
| 472 f_bounded_quantification_test/02: Fail |
| 473 |
| 474 arithmetic_test: Fail |
| 473 | 475 |
| 474 | 476 |
| 475 [ $compiler == dart2js] | 477 [ $compiler == dart2js] |
| 476 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 478 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| 477 static_initializer_type_error_test: Fail # Checked mode not supported. | 479 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 478 exception_test: Fail # "throw null" throws NullPointerException. | 480 exception_test: Fail # "throw null" throws NullPointerException. |
| 479 | 481 |
| 480 # Compilation errors. | 482 # Compilation errors. |
| 481 ct_const_test: Fail # We don't take the generic type into account yet. | 483 ct_const_test: Fail # We don't take the generic type into account yet. |
| 482 call_operator_test: Fail # Unexpected token 'call' | 484 call_operator_test: Fail # Unexpected token 'call' |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 | 671 |
| 670 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. |
| 671 | 673 |
| 672 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". | 674 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". |
| 673 | 675 |
| 674 [ $compiler == dart2js && $mode == release ] | 676 [ $compiler == dart2js && $mode == release ] |
| 675 assign_top_method_negative_test: Crash | 677 assign_top_method_negative_test: Crash |
| 676 | 678 |
| 677 [ $compiler == dart2js && $runtime == none ] | 679 [ $compiler == dart2js && $runtime == none ] |
| 678 *: Fail, Pass # TODO(ahe): Triage these tests. | 680 *: Fail, Pass # TODO(ahe): Triage these tests. |
| OLD | NEW |