Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(777)

Side by Side Diff: tests/language/language.status

Issue 11269041: Added test for the behavior of InvocationMirror and noSuchMethod. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/language/invocation_mirror_test.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 duplicate_implements_test/03: Fail, OK # we are going to remove interfaces 144 duplicate_implements_test/03: Fail, OK # we are going to remove interfaces
143 duplicate_implements_test/04: Fail, OK # we are going to remove interfaces 145 duplicate_implements_test/04: Fail, OK # we are going to remove interfaces
144 factory5_test/00: Fail # issue 3079 146 factory5_test/00: Fail # issue 3079
145 field_method4_negative_test: Fail # Runtime only test, rewrite as multitest 147 field_method4_negative_test: Fail # Runtime only test, rewrite as multitest
146 field7_negative_test: Fail, OK # language changed, test issue 5249 148 field7_negative_test: Fail, OK # language changed, test issue 5249
147 field7a_negative_test: Fail, OK # language changed, test issue 5249 149 field7a_negative_test: Fail, OK # language changed, test issue 5249
148 getter_no_setter_test/01: Fail # Fails to detect compile-time error. 150 getter_no_setter_test/01: Fail # Fails to detect compile-time error.
149 getter_no_setter2_test/01: Fail # Fails to detect compile-time error. 151 getter_no_setter2_test/01: Fail # Fails to detect compile-time error.
150 instance_call_wrong_argument_count_negative_test: Fail # Runtime only test, rewr ite as multitest 152 instance_call_wrong_argument_count_negative_test: Fail # Runtime only test, rewr ite as multitest
151 interface_factory1_negative_test: Fail # language change 1031 153 interface_factory1_negative_test: Fail # language change 1031
154 # Test expects signature of noSuchMethod to be correct according
155 # to specification. Should start working when the library signature
156 # changes.
157 invocation_mirror_test: Fail, OK
152 is_not_class2_negative_test: Fail # Runtime only test, rewrite as multitest 158 is_not_class2_negative_test: Fail # Runtime only test, rewrite as multitest
153 library2_negative_test: Fail # still a valid test? Issue 3649 159 library2_negative_test: Fail # still a valid test? Issue 3649
154 library4_negative_test: Fail # still a valid test? Issue 3530 160 library4_negative_test: Fail # still a valid test? Issue 3530
155 library6_negative_test: Fail # still a valid test? Issue 3650 161 library6_negative_test: Fail # still a valid test? Issue 3650
156 list_literal4_test: Fail # Issue 1343 162 list_literal4_test: Fail # Issue 1343
157 map_literal4_test: Fail # Issue 1343 163 map_literal4_test: Fail # Issue 1343
158 named_parameters_with_object_property_names_test: Fail # Issue 2137 164 named_parameters_with_object_property_names_test: Fail # Issue 2137
159 no_such_method_negative_test: Fail # Runtime only test, rewrite as multiteste 165 no_such_method_negative_test: Fail # Runtime only test, rewrite as multiteste
160 override_field_test/03: Fail # still a valid test? Issue 3894 166 override_field_test/03: Fail # still a valid test? Issue 3894
161 override_field_test/04: Fail # still a valid test? Issue 3656 167 override_field_test/04: Fail # still a valid test? Issue 3656
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 199
194 200
195 # test issue 5337 201 # test issue 5337
196 bad_constructor_test/05: Fail, OK 202 bad_constructor_test/05: Fail, OK
197 203
198 # test issue 5529 204 # test issue 5529
199 abstract_factory_constructor_test/none: Fail, OK 205 abstract_factory_constructor_test/none: Fail, OK
200 abstract_syntax_test/none: Fail, OK 206 abstract_syntax_test/none: Fail, OK
201 interface_test/none: Fail, OK 207 interface_test/none: Fail, OK
202 208
203
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
213 [ $compiler == none && $runtime == drt ] 218 [ $compiler == none && $runtime == drt ]
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 compile_time_constant_checked3_test/04: Fail, OK 438 compile_time_constant_checked3_test/04: Fail, OK
434 compile_time_constant_checked3_test/05: Fail, OK 439 compile_time_constant_checked3_test/05: Fail, OK
435 compile_time_constant_checked3_test/06: Fail, OK 440 compile_time_constant_checked3_test/06: Fail, OK
436 441
437 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 442 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280
438 443
439 call_through_getter_test: Fail # issue 6130 444 call_through_getter_test: Fail # issue 6130
440 call_through_null_getter_test: Fail # issue 6130 445 call_through_null_getter_test: Fail # issue 6130
441 local_function_test: Fail # issue 6130 446 local_function_test: Fail # issue 6130
442 naming_test: Fail # issue 6130 447 naming_test: Fail # issue 6130
448
449 # This is a VM error when the compiled code is run.
450 invocation_mirror_test: Fail # issue 3326, 3622.
OLDNEW
« no previous file with comments | « tests/language/invocation_mirror_test.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698