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

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

Issue 10855174: Lazy implementation of final variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove lazy bailout initializers. Created 8 years, 3 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 [ $compiler == dart2js || $compiler == dart2dart ] 5 [ $compiler == dart2js || $compiler == dart2dart ]
6 # VM specific tests that should not be run by dart2js. 6 # VM specific tests that should not be run by dart2js.
7 *vm_test: Skip 7 *vm_test: Skip
8 *vm_negative_test: Skip 8 *vm_negative_test: Skip
9 9
10 [ $compiler == dart2js && $checked ] 10 [ $compiler == dart2js && $checked ]
(...skipping 28 matching lines...) Expand all
39 39
40 arithmetic_test: Fail 40 arithmetic_test: Fail
41 41
42 [ $compiler == dart2js && $unchecked ] 42 [ $compiler == dart2js && $unchecked ]
43 assertion_test: Fail 43 assertion_test: Fail
44 44
45 [ $compiler == dart2js ] 45 [ $compiler == dart2js ]
46 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax. 46 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax.
47 47
48 function_type_this_parameter_test: Crash # Issue 4417. 48 function_type_this_parameter_test: Crash # Issue 4417.
49 compile_time_constant_test/02: Fail, OK # By inlining the use-function we don't compile the static variable.
50 compile_time_constant8_test: Fail # We don't take the generic type into account yet. 49 compile_time_constant8_test: Fail # We don't take the generic type into account yet.
51 50
52 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux. 51 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux.
53 # Crash infinite loop on Mac and dart2js checked mode on linux. 52 # Crash infinite loop on Mac and dart2js checked mode on linux.
54 function_type_alias6_test: Crash, Fail 53 function_type_alias6_test: Crash, Fail
55 54
56 static_initializer_type_error_test: Fail # Checked mode not supported. 55 static_initializer_type_error_test: Fail # Checked mode not supported.
57 56
58 # Compilation errors. 57 # Compilation errors.
59 const_var_test: Fail # Map literals take 2 type arguments. 58 const_var_test: Fail # Map literals take 2 type arguments.
(...skipping 18 matching lines...) Expand all
78 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef 77 function_type_alias7_test/00: Fail # wrongly accepts default values in typedef
79 function_type_alias_test: Fail # cannot resolve type Fun 78 function_type_alias_test: Fail # cannot resolve type Fun
80 function_type_parameter2_test: Fail # Internal Error: expected optional paramete rs 79 function_type_parameter2_test: Fail # Internal Error: expected optional paramete rs
81 function_type_parameter_test: Fail # Internal Error: expected optional parameter s 80 function_type_parameter_test: Fail # Internal Error: expected optional parameter s
82 generic_instanceof_test: Fail # cannot resolve type T 81 generic_instanceof_test: Fail # cannot resolve type T
83 generic_instanceof2_test: Fail # fails an instance of test at run time 82 generic_instanceof2_test: Fail # fails an instance of test at run time
84 generic_instanceof3_test: Fail # cannot handle generics. 83 generic_instanceof3_test: Fail # cannot handle generics.
85 generic_test: Fail # cannot resolve type T 84 generic_test: Fail # cannot resolve type T
86 get_set_syntax_test/none: Fail # Parsing of pseudo keywords. 85 get_set_syntax_test/none: Fail # Parsing of pseudo keywords.
87 implicit_scope_test: Fail # duplicate definition of a="bar" 86 implicit_scope_test: Fail # duplicate definition of a="bar"
87 lazy_final2_test: Fail # Issue 3559: No support for closures in lazy initialize rs.
88 library_prefixes_test: Fail # other is not a type 88 library_prefixes_test: Fail # other is not a type
89 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2' (bad exception mapping). 89 local_function_test: Fail # TypeError: Object #<Closure> has no method '$call$2' (bad exception mapping).
90 many_generic_instanceof_test: Fail # cannot resolve type T 90 many_generic_instanceof_test: Fail # cannot resolve type T
91 method_binding_test: Fail # internal error: super property read not implemented. 91 method_binding_test: Fail # internal error: super property read not implemented.
92 method_name_test: Fail # Parsing of pseudo keywords. 92 method_name_test: Fail # Parsing of pseudo keywords.
93 method_override_test: Fail # cannot resolve type GetKeysFunctionType 93 method_override_test: Fail # cannot resolve type GetKeysFunctionType
94 method_override2_test/00: Fail # accepts illegal override 94 method_override2_test/00: Fail # accepts illegal override
95 method_override2_test/01: Fail # accepts illegal override 95 method_override2_test/01: Fail # accepts illegal override
96 method_override2_test/02: Fail # accepts illegal override 96 method_override2_test/02: Fail # accepts illegal override
97 method_override2_test/03: Fail # accepts illegal override 97 method_override2_test/03: Fail # accepts illegal override
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 abstract_syntax_test/02: Fail # Negative language test. 162 abstract_syntax_test/02: Fail # Negative language test.
163 assign_top_method_negative_test: Fail # Negative language test. 163 assign_top_method_negative_test: Fail # Negative language test.
164 class_extends_negative_test: Fail # Negative language test. 164 class_extends_negative_test: Fail # Negative language test.
165 const_constructor_syntax_test/01: Fail # Negative language test. 165 const_constructor_syntax_test/01: Fail # Negative language test.
166 const_constructor_syntax_test/02: Fail # Negative language test. 166 const_constructor_syntax_test/02: Fail # Negative language test.
167 const_constructor_syntax_test/03: Fail # Negative language test. 167 const_constructor_syntax_test/03: Fail # Negative language test.
168 const_constructor_syntax_test/04: Fail # Negative language test. 168 const_constructor_syntax_test/04: Fail # Negative language test.
169 const_field_negative_test: Fail # Negative language test. 169 const_field_negative_test: Fail # Negative language test.
170 const_init4_negative_test: Fail # Negative language test. 170 const_init4_negative_test: Fail # Negative language test.
171 const_init_negative_test: Fail # Negative language test. 171 const_init_negative_test: Fail # Negative language test.
172 const_syntax_test/01: Fail # Negative language test.
173 const_syntax_test/02: Fail # Negative language test.
174 const_syntax_test/03: Fail # Negative language test.
175 const_syntax_test/04: Fail # Negative language test. 172 const_syntax_test/04: Fail # Negative language test.
176 constructor2_negative_test: Fail # Negative language test. 173 constructor2_negative_test: Fail # Negative language test.
177 constructor_negative_test: Pass # For the wrong reason. 174 constructor_negative_test: Pass # For the wrong reason.
178 constructor_return_negative_test: Fail # Negative language test. 175 constructor_return_negative_test: Fail # Negative language test.
179 constructor_return_with_arrow_negative_test: Fail # Negative language test. 176 constructor_return_with_arrow_negative_test: Fail # Negative language test.
180 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t est. 177 constructor_return_with_init_and_arrow_negative_test: Fail # Negative language t est.
181 constructor_return_with_init_negative_test: Fail # Negative language test. 178 constructor_return_with_init_negative_test: Fail # Negative language test.
182 duplicate_implements_test/01: Fail # Negative language test. 179 duplicate_implements_test/01: Fail # Negative language test.
183 duplicate_implements_test/02: Fail # Negative language test. 180 duplicate_implements_test/02: Fail # Negative language test.
184 duplicate_implements_test/03: Fail # Negative language test. 181 duplicate_implements_test/03: Fail # Negative language test.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 static_top_level_test/05: Fail # Negative language test. 237 static_top_level_test/05: Fail # Negative language test.
241 static_top_level_test/06: Fail # Negative language test. 238 static_top_level_test/06: Fail # Negative language test.
242 static_top_level_test/07: Fail # Negative language test. 239 static_top_level_test/07: Fail # Negative language test.
243 string_interpolation7_negative_test: Fail # Negative language test. 240 string_interpolation7_negative_test: Fail # Negative language test.
244 throw7_negative_test: Fail # Negative language test. 241 throw7_negative_test: Fail # Negative language test.
245 try_catch_syntax_test/08: Fail # Negative language test. 242 try_catch_syntax_test/08: Fail # Negative language test.
246 243
247 disable_privacy_test: Fail, OK # VM specific test. 244 disable_privacy_test: Fail, OK # VM specific test.
248 numbers_test: Fail, OK # (unintended?) VM specific test. 245 numbers_test: Fail, OK # (unintended?) VM specific test.
249 246
247 final_syntax_test/01: Fail # Missing error for final unitialized field.
kasperl 2012/09/05 08:54:54 uninitialized final field
floitsch 2012/09/05 09:31:07 Done.
248 final_syntax_test/02: Fail # Missing error for final unitialized field.
249 final_syntax_test/03: Fail # Missing error for final unitialized field.
250 final_syntax_test/04: Fail # Missing error for final unitialized field.
251 const_syntax_test/01: Fail # Missing error for final unitialized field.
252 const_syntax_test/02: Fail # Missing error for final unitialized field.
253 const_syntax_test/03: Fail # Missing error for final unitialized field.
250 div_by_zero_test: Fail, OK # Leg only has doubles. 254 div_by_zero_test: Fail, OK # Leg only has doubles.
251 bit_operations_test: Fail, OK # Tests bit operations outside the 32 bit range. 255 bit_operations_test: Fail, OK # Tests bit operations outside the 32 bit range.
252 # The following test will start to fail again once dart2js implements the 256 # The following test will start to fail again once dart2js implements the
253 # runtime semantics for numbers. 257 # runtime semantics for numbers.
254 # Should be: Fail, OK # Expects negative results of bit-operations. 258 # Should be: Fail, OK # Expects negative results of bit-operations.
255 optimization_test: Pass 259 optimization_test: Pass
256 260
257 expect_test: Fail, OK # JavaScript canonicalizes all strings. This test assumes that string-concatenation returns a new string. 261 expect_test: Fail, OK # JavaScript canonicalizes all strings. This test assumes that string-concatenation returns a new string.
258 reg_exp3_test: Fail, OK # Expects exception from const constructor. 262 reg_exp3_test: Fail, OK # Expects exception from const constructor.
259 263
(...skipping 29 matching lines...) Expand all
289 [ $compiler == dart2js && $runtime == safari ] 293 [ $compiler == dart2js && $runtime == safari ]
290 arithmetic_test: Skip # BUG(3492): Times out. 294 arithmetic_test: Skip # BUG(3492): Times out.
291 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' 295 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError'
292 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' 296 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError'
293 closure3_test: Fail # Uncaught error: Instance of 'TypeError' 297 closure3_test: Fail # Uncaught error: Instance of 'TypeError'
294 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' 298 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError'
295 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' 299 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError'
296 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' 300 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError'
297 naming_test: Fail 301 naming_test: Fail
298 302
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698