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

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

Issue 158733003: Fix language tests wrt. warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 == dartanalyzer ] 5 [ $compiler == dartanalyzer ]
6 # Runtime negative test. No static errors or warnings. 6 # Runtime negative test. No static errors or warnings.
7 closure_call_wrong_argument_count_negative_test: skip 7 closure_call_wrong_argument_count_negative_test: skip
8 8
9 # Test issue 12694 (was analyzer issue), (1) when "abstract" is import prefix us ing it as type is warning; (2) currently analyzer resolves prefix as field (don' t ask) 9 # Test issue 12694 (was analyzer issue), (1) when "abstract" is import prefix us ing it as type is warning; (2) currently analyzer resolves prefix as field (don' t ask)
10 built_in_identifier_prefix_test: CompileTimeError # Issue 12694 10 built_in_identifier_prefix_test: CompileTimeError # Issue 12694
11 11
12 # Issue 15315 12 # Issue 15315
13 class_literal_test: fail 13 class_literal_test/01: CompileTimeError
14 class_literal_test/03: CompileTimeError
15 class_literal_test/07: CompileTimeError
14 constructor_call_as_function_test/01: fail 16 constructor_call_as_function_test/01: fail
15 call_type_literal_test/01: fail 17 call_type_literal_test/01: fail
16 18
17 # TBF: we should check conflicts not only for methods, but for accessors too 19 # TBF: we should check conflicts not only for methods, but for accessors too
18 override_field_test/03: fail 20 override_field_test/03: fail
19 method_override7_test/03: Fail # Issue 11496 21 method_override7_test/03: Fail # Issue 11496
20 22
21 assignable_expression_test/02: Fail # Issue 15471 23 assignable_expression_test/02: Fail # Issue 15471
22 assignable_expression_test/12: Fail # Issue 15471 24 assignable_expression_test/12: Fail # Issue 15471
23 assignable_expression_test/22: Fail # Issue 15471 25 assignable_expression_test/22: Fail # Issue 15471
(...skipping 14 matching lines...) Expand all
38 field3a_negative_test: Fail # Issue 11124 40 field3a_negative_test: Fail # Issue 11124
39 final_syntax_test/01: Fail # Issue 11124 41 final_syntax_test/01: Fail # Issue 11124
40 final_syntax_test/04: Fail # Issue 11124 42 final_syntax_test/04: Fail # Issue 11124
41 final_syntax_test/02: Fail # Issue 11124 43 final_syntax_test/02: Fail # Issue 11124
42 final_syntax_test/03: Fail # Issue 11124 44 final_syntax_test/03: Fail # Issue 11124
43 45
44 # Test issue 11545, using not existing constructor name in annotation 46 # Test issue 11545, using not existing constructor name in annotation
45 metadata_test: fail 47 metadata_test: fail
46 48
47 # test issue 11575, classes with abstrac members are not marked as abstract 49 # test issue 11575, classes with abstrac members are not marked as abstract
48 abstract_factory_constructor_test/none: fail # Issue 11575
49 get_set_syntax_test/none: fail # Issue 11575 50 get_set_syntax_test/none: fail # Issue 11575
50 implicit_this_test/none: fail # Issue 11575 51 implicit_this_test/none: fail # Issue 11575
51 interface_test/none: fail # Issue 11575 52 interface_test/none: fail # Issue 11575
52 syntax_test/none: fail # Issue 11575 53 syntax_test/none: fail # Issue 11575
53 54
54 # test issue 11576 55 # test issue 11576
55 bad_constructor_test/none: fail # Issue 11576 56 bad_constructor_test/none: fail # Issue 11576
56 57
57 # test issue 11577, has return type for []= 58 # test issue 11577, has return type for []=
58 cascade_test/none: fail # Issue 11577 59 cascade_test/none: fail # Issue 11577
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 204
204 # missing compile-time error for getter/member override 205 # missing compile-time error for getter/member override
205 override_inheritance_mixed_test/08: MissingCompileTimeError # Issue 16136 206 override_inheritance_mixed_test/08: MissingCompileTimeError # Issue 16136
206 override_inheritance_mixed_test/09: MissingCompileTimeError # Issue 16136 207 override_inheritance_mixed_test/09: MissingCompileTimeError # Issue 16136
207 208
208 # flaky override tests 209 # flaky override tests
209 override_inheritance_field_test/33: MissingStaticWarning, Pass # Issue 16498 210 override_inheritance_field_test/33: MissingStaticWarning, Pass # Issue 16498
210 override_inheritance_field_test/33a: MissingStaticWarning, Pass # Issue 16498 211 override_inheritance_field_test/33a: MissingStaticWarning, Pass # Issue 16498
211 override_inheritance_generic_test/09: MissingStaticWarning, Pass # Issue 16498 212 override_inheritance_generic_test/09: MissingStaticWarning, Pass # Issue 16498
212 213
214 # missing warning for assignment to method
215 assign_top_method_test/01: MissingStaticWarning # Issue 16672
216
217 # missing warning for assignment to type variable
218 checked_setter3_test/01: MissingStaticWarning # Issue 16673
219 checked_setter3_test/02: MissingStaticWarning # Issue 16673
213 220
214 abstract_exact_selector_test: StaticWarning 221 abstract_exact_selector_test: StaticWarning
215 abstract_getter_test: StaticWarning 222 abstract_getter_test: StaticWarning
216 abstract_object_method_test: StaticWarning 223 abstract_object_method_test: StaticWarning
217 abstract_runtime_error_test: StaticWarning
218 application_negative_test: CompileTimeError 224 application_negative_test: CompileTimeError
219 bad_constructor_test/05: CompileTimeError 225 bad_constructor_test/05: CompileTimeError
220 bad_initializer1_negative_test: CompileTimeError 226 bad_initializer1_negative_test: CompileTimeError
221 bad_named_constructor_negative_test: CompileTimeError 227 bad_named_constructor_negative_test: CompileTimeError
222 bad_named_parameters2_test: StaticWarning
223 bad_named_parameters_test: StaticWarning
224 bit_operations_test: StaticWarning
225 body_less_constructor_wrong_arg_negative_test: CompileTimeError 228 body_less_constructor_wrong_arg_negative_test: CompileTimeError
226 call_constructor_on_unresolvable_class_test/04: StaticWarning
227 call_constructor_on_unresolvable_class_test/05: StaticWarning
228 call_constructor_on_unresolvable_class_test/06: StaticWarning
229 call_nonexistent_constructor_test: StaticWarning
230 checked_null_test: StaticWarning
231 checked_setter2_test: StaticWarning
232 checked_setter_test: StaticWarning
233 closure_type_test: StaticWarning
234 compile_time_constant_checked2_test/02: MissingCompileTimeError 229 compile_time_constant_checked2_test/02: MissingCompileTimeError
235 compile_time_constant_checked2_test/03: MissingCompileTimeError 230 compile_time_constant_checked2_test/03: MissingCompileTimeError
236 compile_time_constant_checked2_test/04: MissingCompileTimeError 231 compile_time_constant_checked2_test/04: MissingCompileTimeError
237 compile_time_constant_checked2_test/06: MissingCompileTimeError 232 compile_time_constant_checked2_test/06: MissingCompileTimeError
238 compile_time_constant_checked3_test/02: MissingCompileTimeError 233 compile_time_constant_checked3_test/02: MissingCompileTimeError
239 compile_time_constant_checked3_test/03: MissingCompileTimeError 234 compile_time_constant_checked3_test/03: MissingCompileTimeError
240 compile_time_constant_checked3_test/04: MissingCompileTimeError 235 compile_time_constant_checked3_test/04: MissingCompileTimeError
241 compile_time_constant_checked3_test/06: MissingCompileTimeError 236 compile_time_constant_checked3_test/06: MissingCompileTimeError
242 compile_time_constant_checked_test/02: MissingCompileTimeError 237 compile_time_constant_checked_test/02: MissingCompileTimeError
243 compile_time_constant_k_test: StaticWarning
244 compile_time_constant_o_test: StaticWarning
245 const_counter_negative_test: CompileTimeError 238 const_counter_negative_test: CompileTimeError
246 const_objects_are_immutable_test: StaticWarning
247 const_optional_args_negative_test: CompileTimeError 239 const_optional_args_negative_test: CompileTimeError
248 constructor_named_arguments_test/01: StaticWarning
249 constructor_redirect1_negative_test: CompileTimeError 240 constructor_redirect1_negative_test: CompileTimeError
250 constructor_redirect2_negative_test: CompileTimeError 241 constructor_redirect2_negative_test: CompileTimeError
251 constructor_setter_negative_test: CompileTimeError 242 constructor_setter_negative_test: CompileTimeError
252 constructor_test: StaticWarning
253 core_type_check_test: StaticWarning
254 crash_6725_test: StaticWarning
255 default_factory_library_test: StaticWarning
256 default_factory_test: StaticWarning
257 double_to_string_as_exponential2_test: StaticWarning
258 double_to_string_as_fixed2_test: StaticWarning
259 double_to_string_as_precision2_test: StaticWarning
260 duplicate_export_negative_test: CompileTimeError 243 duplicate_export_negative_test: CompileTimeError
261 duplicate_interface_negative_test: CompileTimeError 244 duplicate_interface_negative_test: CompileTimeError
262 dynamic_field_test: StaticWarning
263 dynamic_prefix_core_test: StaticWarning
264 empty_block_case_test: StaticWarning
265 error_stacktrace_test: StaticWarning 245 error_stacktrace_test: StaticWarning
266 export_ambiguous_main_negative_test: CompileTimeError 246 export_ambiguous_main_negative_test: CompileTimeError
267 extend_type_parameter2_negative_test: CompileTimeError 247 extend_type_parameter2_negative_test: CompileTimeError
268 extend_type_parameter_negative_test: CompileTimeError 248 extend_type_parameter_negative_test: CompileTimeError
269 external_test/20: StaticWarning 249 external_test/20: StaticWarning
270 factory2_negative_test: CompileTimeError 250 factory2_negative_test: CompileTimeError
271 factory2_test: StaticWarning 251 factory2_test: StaticWarning
272 factory3_negative_test: CompileTimeError 252 factory3_negative_test: CompileTimeError
273 factory3_test: StaticWarning 253 factory3_test: StaticWarning
274 factory4_test: StaticWarning 254 factory4_test: StaticWarning
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 type_variable_conflict2_test/08: MissingCompileTimeError 476 type_variable_conflict2_test/08: MissingCompileTimeError
497 type_variable_conflict2_test/10: MissingCompileTimeError 477 type_variable_conflict2_test/10: MissingCompileTimeError
498 unary_plus_negative_test: CompileTimeError 478 unary_plus_negative_test: CompileTimeError
499 unbound_getter_test: StaticWarning 479 unbound_getter_test: StaticWarning
500 unhandled_exception_negative_test: CompileTimeError 480 unhandled_exception_negative_test: CompileTimeError
501 unresolved_top_level_method_negative_test: CompileTimeError 481 unresolved_top_level_method_negative_test: CompileTimeError
502 vm/type_cast_vm_test: StaticWarning 482 vm/type_cast_vm_test: StaticWarning
503 vm/type_vm_test: StaticWarning 483 vm/type_vm_test: StaticWarning
504 void_type_test: StaticWarning 484 void_type_test: StaticWarning
505 485
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698