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

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

Issue 1083093005: Fix dart2dart new backend status. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
« no previous file with comments | « tests/language/language.status ('k') | no next file » | 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 [ $compiler == dart2js ] 5 [ $compiler == dart2js ]
6 sync_generator2_test/07: MissingCompileTimeError # Issue 22324 6 sync_generator2_test/07: MissingCompileTimeError # Issue 22324
7 sync_generator2_test/08: MissingCompileTimeError # Issue 22324 7 sync_generator2_test/08: MissingCompileTimeError # Issue 22324
8 sync_generator2_test/10: MissingCompileTimeError # Issue 22324 8 sync_generator2_test/10: MissingCompileTimeError # Issue 22324
9 getter_setter_in_lib_test: Fail # Issue 23288 9 getter_setter_in_lib_test: Fail # Issue 23288
10 10
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 [ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim)] 199 [ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim)]
200 # Safari codegen bug, fixed on some versions of Safari 7.1 (Version 7.1 (9537.85 .10.17.1)) 200 # Safari codegen bug, fixed on some versions of Safari 7.1 (Version 7.1 (9537.85 .10.17.1))
201 call_through_getter_test: Fail, OK 201 call_through_getter_test: Fail, OK
202 202
203 [ $compiler == dart2js && $runtime == chromeOnAndroid ] 203 [ $compiler == dart2js && $runtime == chromeOnAndroid ]
204 override_field_test/02: Pass, Slow # TODO(kasperl): Please triage. 204 override_field_test/02: Pass, Slow # TODO(kasperl): Please triage.
205 205
206 [ $compiler == dart2dart && $builder_tag == new_backend ] 206 [ $compiler == dart2dart && $builder_tag == new_backend ]
207 regress_13494_test: Pass # Issue 22370, passes for the wrong reason 207 regress_13494_test: Pass # Issue 22370, passes for the wrong reason
208 208
209 [ $compiler == dart2dart && $builder_tag == new_backend && $host_checked ] 209 [ $compiler == dart2dart && $minified == true ]
210 large_implicit_getter_test: Crash # Stack overflow
211
212 [ $compiler == dart2dart && ($minified == true || $builder_tag == new_backend) ]
213 type_variable_conflict2_test/01: RuntimeError # Issue 16180 210 type_variable_conflict2_test/01: RuntimeError # Issue 16180
214 211
215 [ $compiler == dart2dart ] 212 [ $compiler == dart2dart ]
216 sync_generator2_test/07: MissingCompileTimeError # Issue 22324 213 sync_generator2_test/07: MissingCompileTimeError # Issue 22324
217 sync_generator2_test/08: MissingCompileTimeError # Issue 22324 214 sync_generator2_test/08: MissingCompileTimeError # Issue 22324
218 sync_generator2_test/10: MissingCompileTimeError # Issue 22324 215 sync_generator2_test/10: MissingCompileTimeError # Issue 22324
219 216
220 regress_13494_test: Fail # Issue 22370 217 regress_13494_test: Fail # Issue 22370
221 218
222 enum_duplicate_test/01: CompileTimeError # Issue 22169 219 enum_duplicate_test/01: CompileTimeError # Issue 22169
(...skipping 2096 matching lines...) Expand 10 before | Expand all | Expand 10 after
2319 unresolved_top_level_method_negative_test: Crash # unsupported element kind: a:f ield 2316 unresolved_top_level_method_negative_test: Crash # unsupported element kind: a:f ield
2320 unresolved_top_level_var_negative_test: Crash # unsupported element kind: a:fiel d 2317 unresolved_top_level_var_negative_test: Crash # unsupported element kind: a:fiel d
2321 value_range2_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGene rator 2318 value_range2_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGene rator
2322 value_range3_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGene rator 2319 value_range3_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGene rator
2323 value_range_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGener ator 2320 value_range_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGener ator
2324 variable_declaration_metadata_test/06: Crash # (new C()): Error expression `new C()` unhandled. 2321 variable_declaration_metadata_test/06: Crash # (new C()): Error expression `new C()` unhandled.
2325 variable_declaration_metadata_test/08: Crash # (new C()): Error expression `new C()` unhandled. 2322 variable_declaration_metadata_test/08: Crash # (new C()): Error expression `new C()` unhandled.
2326 var_init_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGenerato r 2323 var_init_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGenerato r
2327 void_type_test: Crash # (try {var x=func();}on TypeError catch (error){got_type_ error=true;}): "on T" catch block 2324 void_type_test: Crash # (try {var x=func();}on TypeError catch (error){got_type_ error=true;}): "on T" catch block
2328 while_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGenerator 2325 while_test: Crash # Instance of 'TypeOperator': unimplemented in CodeGenerator
OLDNEW
« no previous file with comments | « tests/language/language.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698