Chromium Code Reviews| 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 invocation_mirror_test: Fail # issue 3326, 3622. | |
| 66 | |
| 65 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ] | 67 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 & & $checked ] |
| 66 gc_test: Skip # Issue 1487, flaky. | 68 gc_test: Skip # Issue 1487, flaky. |
| 67 | 69 |
| 68 [ $compiler == none && $mode == debug ] | 70 [ $compiler == none && $mode == debug ] |
| 69 gc_test: Skip # Takes too long. | 71 gc_test: Skip # Takes too long. |
| 70 | 72 |
| 71 [ $compiler == none && $unchecked ] | 73 [ $compiler == none && $unchecked ] |
| 72 field_override_test/02: Fail # Issue 742: field shadowing now allowed | 74 field_override_test/02: Fail # Issue 742: field shadowing now allowed |
| 73 | 75 |
| 74 # Only checked mode reports an error on type assignment | 76 # Only checked mode reports an error on type assignment |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 193 | 195 |
| 194 | 196 |
| 195 # test issue 5337 | 197 # test issue 5337 |
| 196 bad_constructor_test/05: Fail, OK | 198 bad_constructor_test/05: Fail, OK |
| 197 | 199 |
| 198 # test issue 5529 | 200 # test issue 5529 |
| 199 abstract_factory_constructor_test/none: Fail, OK | 201 abstract_factory_constructor_test/none: Fail, OK |
| 200 abstract_syntax_test/none: Fail, OK | 202 abstract_syntax_test/none: Fail, OK |
| 201 interface_test/none: Fail, OK | 203 interface_test/none: Fail, OK |
| 202 | 204 |
| 205 # Test expects signature of noSUchMethod to be | |
|
Mads Ager (google)
2012/10/25 12:32:19
typo
Also, please finish comment.
Lasse Reichstein Nielsen
2012/10/25 14:12:01
Done.
| |
| 206 invocation_mirror_test: Fail, OK | |
| 207 | |
| 203 | 208 |
| 204 # | 209 # |
| 205 # Add new dartc annotations above in alphabetical order | 210 # Add new dartc annotations above in alphabetical order |
| 206 # | 211 # |
| 207 | 212 |
| 208 # VM specific tests that should not be run by DartC. | 213 # VM specific tests that should not be run by DartC. |
| 209 *vm_test: Skip | 214 *vm_test: Skip |
| 210 *vm_negative_test: Skip | 215 *vm_negative_test: Skip |
| 211 | 216 |
| 212 | 217 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 431 compile_time_constant_checked3_test/04: Fail, OK | 436 compile_time_constant_checked3_test/04: Fail, OK |
| 432 compile_time_constant_checked3_test/05: Fail, OK | 437 compile_time_constant_checked3_test/05: Fail, OK |
| 433 compile_time_constant_checked3_test/06: Fail, OK | 438 compile_time_constant_checked3_test/06: Fail, OK |
| 434 | 439 |
| 435 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 440 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 436 | 441 |
| 437 call_through_getter_test: Fail # issue 6130 | 442 call_through_getter_test: Fail # issue 6130 |
| 438 call_through_null_getter_test: Fail # issue 6130 | 443 call_through_null_getter_test: Fail # issue 6130 |
| 439 local_function_test: Fail # issue 6130 | 444 local_function_test: Fail # issue 6130 |
| 440 naming_test: Fail # issue 6130 | 445 naming_test: Fail # issue 6130 |
| 446 | |
| 447 # Implement InvocationMirror and pass it to noSuchMethod. This error might go | |
|
Mads Ager (google)
2012/10/25 12:32:19
I don't understand this comment. Isn't the only is
Lasse Reichstein Nielsen
2012/10/25 14:12:01
Good solution!
| |
| 448 # away when the VM fixes their noSuchMethod handling. | |
| 449 invocation_mirror_test: Fail | |
| OLD | NEW |