| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 type_variable_bounds2_test/02: Pass # For the wrong reasons. | 468 type_variable_bounds2_test/02: Pass # For the wrong reasons. |
| 469 type_variable_bounds2_test/03: Fail | 469 type_variable_bounds2_test/03: Fail |
| 470 type_variable_bounds2_test/05: Fail | 470 type_variable_bounds2_test/05: Fail |
| 471 type_variable_bounds2_test/06: Pass # For the wrong reasons. | 471 type_variable_bounds2_test/06: Pass # For the wrong reasons. |
| 472 assign_top_method_negative_test: Pass # For the wrong reasons. | 472 assign_top_method_negative_test: Pass # For the wrong reasons. |
| 473 | 473 |
| 474 | 474 |
| 475 [ $compiler == dart2js] | 475 [ $compiler == dart2js] |
| 476 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 476 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. | 477 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 478 | 478 exception_test: Fail # "throw null" throws NullPointerException. |
| 479 | 479 |
| 480 # Compilation errors. | 480 # Compilation errors. |
| 481 ct_const_test: Fail # We don't take the generic type into account yet. | 481 ct_const_test: Fail # We don't take the generic type into account yet. |
| 482 call_operator_test: Fail # Unexpected token 'call' | 482 call_operator_test: Fail # Unexpected token 'call' |
| 483 char_escape_test: Fail # Unhandled non-BMP character: U+10000 | 483 char_escape_test: Fail # Unhandled non-BMP character: U+10000 |
| 484 constructor6_test: Fail # Closures inside initializers not implemented. | 484 constructor6_test: Fail # Closures inside initializers not implemented. |
| 485 default_factory_library_test: Fail # lib is not a type | 485 default_factory_library_test: Fail # lib is not a type |
| 486 dynamic_test: Fail # cannot resolve type F1 | 486 dynamic_test: Fail # cannot resolve type F1 |
| 487 factory3_test: Fail # internal error: visitIs for type variables not implemented | 487 factory3_test: Fail # internal error: visitIs for type variables not implemented |
| 488 function_literals2_test: Fail # Closures inside initializers not implemented. | 488 function_literals2_test: Fail # Closures inside initializers not implemented. |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 | 669 |
| 670 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. | 670 list_test: Fail, OK # Obsolete test uses List.copyFrom that was removed on 2011-
10-31. |
| 671 | 671 |
| 672 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". | 672 final_syntax_test/none: Fail, OK # Uses deprecated "StrConstant + StrConstant". |
| 673 | 673 |
| 674 [ $compiler == dart2js && $mode == release ] | 674 [ $compiler == dart2js && $mode == release ] |
| 675 assign_top_method_negative_test: Crash | 675 assign_top_method_negative_test: Crash |
| 676 | 676 |
| 677 [ $compiler == dart2js && $runtime == none ] | 677 [ $compiler == dart2js && $runtime == none ] |
| 678 *: Fail, Pass # TODO(ahe): Triage these tests. | 678 *: Fail, Pass # TODO(ahe): Triage these tests. |
| OLD | NEW |