| 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. |
| 66 | 67 |
| 67 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 68 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 68 gc_test: Skip # Issue 1487, flaky. | 69 gc_test: Skip # Issue 1487, flaky. |
| 69 | 70 |
| 70 [ $compiler == none && $mode == debug ] | 71 [ $compiler == none && $mode == debug ] |
| 71 gc_test: Skip # Takes too long. | 72 gc_test: Skip # Takes too long. |
| 72 | 73 |
| 73 [ $compiler == none && $unchecked ] | 74 [ $compiler == none && $unchecked ] |
| 74 field_override_test/02: Fail # Issue 742: field shadowing now allowed | 75 field_override_test/02: Fail # Issue 742: field shadowing now allowed |
| 75 | 76 |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 | 436 |
| 436 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 437 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 437 | 438 |
| 438 call_through_getter_test: Fail # issue 6130 | 439 call_through_getter_test: Fail # issue 6130 |
| 439 call_through_null_getter_test: Fail # issue 6130 | 440 call_through_null_getter_test: Fail # issue 6130 |
| 440 local_function_test: Fail # issue 6130 | 441 local_function_test: Fail # issue 6130 |
| 441 naming_test: Fail # issue 6130 | 442 naming_test: Fail # issue 6130 |
| 442 | 443 |
| 443 # This is a VM error when the compiled code is run. | 444 # This is a VM error when the compiled code is run. |
| 444 invocation_mirror_test: Fail # issue 3326, 3622. | 445 invocation_mirror_test: Fail # issue 3326, 3622. |
| OLD | NEW |