| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 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 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 66 gc_test: Skip # Issue 1487, flaky. |
| 65 | 67 |
| 66 [ $compiler == none && $mode == debug ] | 68 [ $compiler == none && $mode == debug ] |
| 67 gc_test: Skip # Takes too long. | 69 gc_test: Skip # Takes too long. |
| 68 | 70 |
| 69 [ $compiler == none && $unchecked ] | 71 [ $compiler == none && $unchecked ] |
| 70 field_override_test/02: Fail # Issue 742: field shadowing now allowed | 72 field_override_test/02: Fail # Issue 742: field shadowing now allowed |
| 71 | 73 |
| 72 # Only checked mode reports an error on type assignment | 74 # Only checked mode reports an error on type assignment |
| 73 # problems in compile time constants. | 75 # problems in compile time constants. |
| 74 compile_time_constant_checked_test/02: Fail, OK | 76 compile_time_constant_checked_test/02: Fail, OK |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 compile_time_constant_checked3_test/04: Fail, OK | 431 compile_time_constant_checked3_test/04: Fail, OK |
| 430 compile_time_constant_checked3_test/05: Fail, OK | 432 compile_time_constant_checked3_test/05: Fail, OK |
| 431 compile_time_constant_checked3_test/06: Fail, OK | 433 compile_time_constant_checked3_test/06: Fail, OK |
| 432 | 434 |
| 433 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 435 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 434 | 436 |
| 435 call_through_getter_test: Fail # issue 6130 | 437 call_through_getter_test: Fail # issue 6130 |
| 436 call_through_null_getter_test: Fail # issue 6130 | 438 call_through_null_getter_test: Fail # issue 6130 |
| 437 local_function_test: Fail # issue 6130 | 439 local_function_test: Fail # issue 6130 |
| 438 naming_test: Fail # issue 6130 | 440 naming_test: Fail # issue 6130 |
| OLD | NEW |