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

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

Issue 10855174: Lazy implementation of final variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase wrt CL 10832351. Created 8 years, 4 months 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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 prefix_core_test: Fail # Issue 3638. 47 prefix_core_test: Fail # Issue 3638.
48 48
49 fauxverride_test/none: Fail # Issue 3778. 49 fauxverride_test/none: Fail # Issue 3778.
50 50
51 bad_override_test/01: Fail # Issue 3859. 51 bad_override_test/01: Fail # Issue 3859.
52 bad_override_test/02: Fail # Issue 3859. 52 bad_override_test/02: Fail # Issue 3859.
53 53
54 setter_no_getter_call_test/01: Crash # Issue 4360 54 setter_no_getter_call_test/01: Crash # Issue 4360
55 55
56 final_syntax_test/none: Fail # Issue 3558
57 lazy_final_test: Fail # Issue 3558
58 lazy_final2_test: Fail # Issue 3558
59
60
56 # DartC specific tests that should not be run by the VM 61 # DartC specific tests that should not be run by the VM
57 *dartc_test: Skip 62 *dartc_test: Skip
58 *dartc_negative_test: Skip 63 *dartc_negative_test: Skip
59 64
60 [ $compiler == none && $mode == debug ] 65 [ $compiler == none && $mode == debug ]
61 gc_test: Skip # Takes too long. 66 gc_test: Skip # Takes too long.
62 67
63 [ $compiler == dartc ] 68 [ $compiler == dartc ]
64 application_negative_test: Fail # Runtime only test, rewrite as multitest 69 application_negative_test: Fail # Runtime only test, rewrite as multitest
65 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest 70 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 pseudo_kw_illegal_test/11: Fail 181 pseudo_kw_illegal_test/11: Fail
177 pseudo_kw_illegal_test/12: Fail 182 pseudo_kw_illegal_test/12: Fail
178 pseudo_kw_illegal_test/13: Fail 183 pseudo_kw_illegal_test/13: Fail
179 pseudo_kw_illegal_test/14: Fail 184 pseudo_kw_illegal_test/14: Fail
180 pseudo_kw_illegal_test/15: Fail 185 pseudo_kw_illegal_test/15: Fail
181 pseudo_kw_illegal_test/16: Fail 186 pseudo_kw_illegal_test/16: Fail
182 pseudo_kw_test: Fail 187 pseudo_kw_test: Fail
183 # external keyword is not yet supported by dart2js/dart2dart. 188 # external keyword is not yet supported by dart2js/dart2dart.
184 external_test/*: Skip 189 external_test/*: Skip
185 # Final top-level field declarations without initializer do not lead to errors i n dart2js frontend. 190 # Final top-level field declarations without initializer do not lead to errors i n dart2js frontend.
186 final_syntax_test/03: Fail 191 const_syntax_test/03: Fail, OK
187 final_syntax_test/04: Fail 192 const_syntax_test/04: Fail, OK
193 final_syntax_test/03: Fail, OK
194 final_syntax_test/04: Fail, OK
195 lazy_final_test: Fail,OK # Issue 3558
196 lazy_final2_test: Fail,OK # Issue 3558
188 # Call operator is not supported by DartVM (see suppression above.) 197 # Call operator is not supported by DartVM (see suppression above.)
189 call_operator_test: Fail 198 call_operator_test: Fail
190 # dart2js frontend doesn't even analyse problematic classes. 199 # dart2js frontend doesn't even analyse problematic classes.
191 class_extends_negative_test: Fail 200 class_extends_negative_test: Fail
192 duplicate_implements_test/01: Fail 201 duplicate_implements_test/01: Fail
193 duplicate_implements_test/02: Fail 202 duplicate_implements_test/02: Fail
194 duplicate_implements_test/03: Fail 203 duplicate_implements_test/03: Fail
195 duplicate_implements_test/04: Fail 204 duplicate_implements_test/04: Fail
196 empty_body_member_negative_test: Fail 205 empty_body_member_negative_test: Fail
197 field2_negative_test: Fail 206 field2_negative_test: Fail
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 prefix_core_test: Fail 257 prefix_core_test: Fail
249 super_closure_test: Fail 258 super_closure_test: Fail
250 super_field_access_test: Fail 259 super_field_access_test: Fail
251 super_first_constructor_test: Fail 260 super_first_constructor_test: Fail
252 # VM specific tests. 261 # VM specific tests.
253 disable_privacy_test: Fail, Ok 262 disable_privacy_test: Fail, Ok
254 # This test hard codes name of file being run and precise position. 263 # This test hard codes name of file being run and precise position.
255 generic_test: Fail, Ok 264 generic_test: Fail, Ok
256 top_level_getter_arrow_syntax_test: Fail # TODO(ahe): I'm working on this. 265 top_level_getter_arrow_syntax_test: Fail # TODO(ahe): I'm working on this.
257 getters_setters_test: Fail # TODO(ahe): I'm working on this. 266 getters_setters_test: Fail # TODO(ahe): I'm working on this.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698