| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 compile_time_constant10_test/none: Fail # issue 5214 | 56 compile_time_constant10_test/none: Fail # issue 5214 |
| 57 | 57 |
| 58 export_cyclic_test: Crash # issue 6060 | 58 export_cyclic_test: Crash # issue 6060 |
| 59 | 59 |
| 60 call_through_getter_test: Fail # issue 6124 | 60 call_through_getter_test: Fail # issue 6124 |
| 61 call_through_null_getter_test: Fail # issue 6124 | 61 call_through_null_getter_test: Fail # issue 6124 |
| 62 local_function_test: Fail # issue 6124 | 62 local_function_test: Fail # issue 6124 |
| 63 naming_test: Fail # issue 6124 | 63 naming_test: Fail # issue 6124 |
| 64 | 64 |
| 65 invocation_mirror_test: Fail # issue 3326, 3622. | 65 invocation_mirror_test: Fail # issue 3326, 3622. |
| 66 no_such_method_test: Fail # issue 3326, 3622. | |
| 67 | |
| 68 invocation_mirror_indirect_test: Fail # Issue 3326 | |
| 69 many_overridden_no_such_method_test: Fail # Issue 3326 | |
| 70 overridden_no_such_method_test: Fail # Issue 3326 | |
| 71 | |
| 72 | 66 |
| 73 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 67 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 74 gc_test: Skip # Issue 1487, flaky. | 68 gc_test: Skip # Issue 1487, flaky. |
| 75 | 69 |
| 76 [ $compiler == none && $mode == debug ] | 70 [ $compiler == none && $mode == debug ] |
| 77 gc_test: Skip # Takes too long. | 71 gc_test: Skip # Takes too long. |
| 78 | 72 |
| 79 [ $compiler == none && $unchecked ] | 73 [ $compiler == none && $unchecked ] |
| 80 field_override_test/02: Fail # Issue 742: field shadowing now allowed | 74 field_override_test/02: Fail # Issue 742: field shadowing now allowed |
| 81 | 75 |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 | 514 |
| 521 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 515 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 522 | 516 |
| 523 call_through_getter_test: Fail # issue 6130 | 517 call_through_getter_test: Fail # issue 6130 |
| 524 call_through_null_getter_test: Fail # issue 6130 | 518 call_through_null_getter_test: Fail # issue 6130 |
| 525 local_function_test: Fail # issue 6130 | 519 local_function_test: Fail # issue 6130 |
| 526 naming_test: Fail # issue 6130 | 520 naming_test: Fail # issue 6130 |
| 527 | 521 |
| 528 # This is a VM error when the compiled code is run. | 522 # This is a VM error when the compiled code is run. |
| 529 invocation_mirror_test: Fail # issue 3326, 3622. | 523 invocation_mirror_test: Fail # issue 3326, 3622. |
| 530 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | |
| OLD | NEW |