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