| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 type_error_test: Fail # http://dartbug.com/5280 | 52 type_error_test: Fail # http://dartbug.com/5280 |
| 53 | 53 |
| 54 # DartC specific tests that should not be run by the VM | 54 # DartC specific tests that should not be run by the VM |
| 55 *dartc_test: Skip | 55 *dartc_test: Skip |
| 56 *dartc_negative_test: Skip | 56 *dartc_negative_test: Skip |
| 57 | 57 |
| 58 compile_time_constant10_test/none: Fail # issue 5214 | 58 compile_time_constant10_test/none: Fail # issue 5214 |
| 59 | 59 |
| 60 export_cyclic_test: Crash # issue 6060 | 60 export_cyclic_test: Crash # issue 6060 |
| 61 | 61 |
| 62 call_through_getter_test: Fail # issue 6124 | |
| 63 call_through_null_getter_test: Fail # issue 6124 | 62 call_through_null_getter_test: Fail # issue 6124 |
| 64 local_function_test: Fail # issue 6124 | |
| 65 naming_test: Fail # issue 6124 | |
| 66 | 63 |
| 67 invocation_mirror_test: Fail # issue 3326, 3622. | 64 invocation_mirror_test: Fail # issue 3326, 3622. |
| 68 no_such_method_test: Fail # issue 3326, 3622. | 65 no_such_method_test: Fail # issue 3326, 3622. |
| 69 | 66 |
| 70 invocation_mirror_indirect_test: Fail # Issue 3326 | 67 invocation_mirror_indirect_test: Fail # Issue 3326 |
| 71 | 68 |
| 72 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 69 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 73 gc_test: Skip # Issue 1487, flaky. | 70 gc_test: Skip # Issue 1487, flaky. |
| 74 | 71 |
| 75 [ $compiler == none && $mode == debug ] | 72 [ $compiler == none && $mode == debug ] |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 compile_time_constant_checked2_test/06: Fail, OK | 556 compile_time_constant_checked2_test/06: Fail, OK |
| 560 compile_time_constant_checked3_test/01: Fail, OK | 557 compile_time_constant_checked3_test/01: Fail, OK |
| 561 compile_time_constant_checked3_test/02: Fail, OK | 558 compile_time_constant_checked3_test/02: Fail, OK |
| 562 compile_time_constant_checked3_test/03: Fail, OK | 559 compile_time_constant_checked3_test/03: Fail, OK |
| 563 compile_time_constant_checked3_test/04: Fail, OK | 560 compile_time_constant_checked3_test/04: Fail, OK |
| 564 compile_time_constant_checked3_test/05: Fail, OK | 561 compile_time_constant_checked3_test/05: Fail, OK |
| 565 compile_time_constant_checked3_test/06: Fail, OK | 562 compile_time_constant_checked3_test/06: Fail, OK |
| 566 | 563 |
| 567 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 564 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 568 | 565 |
| 569 call_through_getter_test: Fail # issue 6130 | |
| 570 call_through_null_getter_test: Fail # issue 6130 | 566 call_through_null_getter_test: Fail # issue 6130 |
| 571 local_function_test: Fail # issue 6130 | |
| 572 naming_test: Fail # issue 6130 | |
| 573 | 567 |
| 574 # This is a VM error when the compiled code is run. | 568 # This is a VM error when the compiled code is run. |
| 575 invocation_mirror_test: Fail # issue 3326, 3622. | 569 invocation_mirror_test: Fail # issue 3326, 3622. |
| 576 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 570 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |