| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 duplicate_export_negative_test: Fail # issue 6134 | 57 duplicate_export_negative_test: Fail # issue 6134 |
| 58 type_annotation_test/04: Fail # Issue 6970 | 58 type_annotation_test/04: Fail # Issue 6970 |
| 59 type_annotation_test/06: Fail # Issue 6973 | 59 type_annotation_test/06: Fail # Issue 6973 |
| 60 type_annotation_test/09: Fail # Issue 6973 | 60 type_annotation_test/09: Fail # Issue 6973 |
| 61 | 61 |
| 62 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 62 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 63 gc_test: Skip # Issue 1487, flaky. | 63 gc_test: Skip # Issue 1487, flaky. |
| 64 | 64 |
| 65 [ $compiler == none && $mode == debug ] | 65 [ $compiler == none && $mode == debug ] |
| 66 gc_test: Skip # Takes too long. | 66 gc_test: Skip # Takes too long. |
| 67 issue7513_test: Crash # Issue 7513 |
| 67 | 68 |
| 68 [ $compiler == none && $unchecked ] | 69 [ $compiler == none && $unchecked ] |
| 69 | 70 |
| 70 # Only checked mode reports an error on type assignment | 71 # Only checked mode reports an error on type assignment |
| 71 # problems in compile time constants. | 72 # problems in compile time constants. |
| 72 compile_time_constant_checked_test/02: Fail, OK | 73 compile_time_constant_checked_test/02: Fail, OK |
| 73 compile_time_constant_checked2_test/01: Fail, OK | 74 compile_time_constant_checked2_test/01: Fail, OK |
| 74 compile_time_constant_checked2_test/02: Fail, OK | 75 compile_time_constant_checked2_test/02: Fail, OK |
| 75 compile_time_constant_checked2_test/03: Fail, OK | 76 compile_time_constant_checked2_test/03: Fail, OK |
| 76 compile_time_constant_checked2_test/04: Fail, OK | 77 compile_time_constant_checked2_test/04: Fail, OK |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 | 532 |
| 532 # This is a VM error when the compiled code is run. | 533 # This is a VM error when the compiled code is run. |
| 533 invocation_mirror_test: Fail # issue 3326. | 534 invocation_mirror_test: Fail # issue 3326. |
| 534 invocation_mirror_indirect_test: Fail # issue 3326. | 535 invocation_mirror_indirect_test: Fail # issue 3326. |
| 535 super_call4_test: Fail # issue 3326. | 536 super_call4_test: Fail # issue 3326. |
| 536 | 537 |
| 537 [ $compiler == dart2dart && $minified ] | 538 [ $compiler == dart2dart && $minified ] |
| 538 import_core_prefix_test: Pass | 539 import_core_prefix_test: Pass |
| 539 prefix22_test: Pass | 540 prefix22_test: Pass |
| 540 invocation_mirror2_test: Fail | 541 invocation_mirror2_test: Fail |
| OLD | NEW |