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

Side by Side Diff: dart/tests/co19/co19-analyzer.status

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | « dart/sdk/lib/typed_data/typed_data.dart ('k') | dart/tests/co19/co19-co19.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) 2013, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2013, 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 6
7 # invalid argument for constant constructor 7 # invalid argument for constant constructor
8 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail 8 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail
9 9
10 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it? 10 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it?
(...skipping 10 matching lines...) Expand all
21 21
22 # TBF: when we override "foo([x = 0]) {}" with "foo([x]) {}" we should report wa rning - different default value 22 # TBF: when we override "foo([x = 0]) {}" with "foo([x]) {}" we should report wa rning - different default value
23 Language/07_Classes/1_Instance_Methods_A04_t02: MissingStaticWarning 23 Language/07_Classes/1_Instance_Methods_A04_t02: MissingStaticWarning
24 Language/07_Classes/4_Abstract_Instance_Members_A07_t04: MissingStaticWarning 24 Language/07_Classes/4_Abstract_Instance_Members_A07_t04: MissingStaticWarning
25 25
26 # TBF: It is a static warning if a class C declares an instance method named n a nd has a setter named n=. 26 # TBF: It is a static warning if a class C declares an instance method named n a nd has a setter named n=.
27 Language/07_Classes/1_Instance_Methods_A07_t01: MissingStaticWarning 27 Language/07_Classes/1_Instance_Methods_A07_t01: MissingStaticWarning
28 Language/07_Classes/1_Instance_Methods_A07_t02: MissingStaticWarning 28 Language/07_Classes/1_Instance_Methods_A07_t02: MissingStaticWarning
29 29
30 # TBF: Static members should not be accessible via subclasses. 30 # TBF: Static members should not be accessible via subclasses.
31 Language/07_Classes/7_Static_Methods_A01_t03: MissingStaticWarning
32 Language/07_Classes/9_Superclasses/1_Inheritance_and_Overriding_A01_t05: Missing StaticWarning 31 Language/07_Classes/9_Superclasses/1_Inheritance_and_Overriding_A01_t05: Missing StaticWarning
33 Language/08_Interfaces/5_Superinterfaces/1_Inheritance_and_Overriding_A01_t02: M issingStaticWarning
34
35
36 32
37 # co19 issue #442, undefined name "Expect" 33 # co19 issue #442, undefined name "Expect"
38 Language/15_Types/4_Interface_Types_A08_t03: fail, OK 34 Language/15_Types/4_Interface_Types_A08_t03: fail, OK
39 35
40 # co19 issue #455, undeclared identifier is static warning 36 # co19 issue #455, undeclared identifier is static warning
41 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK 37 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK
42 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK 38 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK
43 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK 39 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK
44 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK 40 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK
45 41
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 # co19 issue 644, The argument type 'int' cannot be assigned to the parameter ty pe '(String, Object) -> void' 251 # co19 issue 644, The argument type 'int' cannot be assigned to the parameter ty pe '(String, Object) -> void'
256 LibTest/collection/LinkedHashMap/allTests_A01_t01: Fail, OK 252 LibTest/collection/LinkedHashMap/allTests_A01_t01: Fail, OK
257 253
258 # co19 issue 645, "15.7 Type Void". Likewise, passing the result of a void metho d as a parameter or assigning it to a variable will cause a warning unless the v ariable/formal parameter has type dynamic. 254 # co19 issue 645, "15.7 Type Void". Likewise, passing the result of a void metho d as a parameter or assigning it to a variable will cause a warning unless the v ariable/formal parameter has type dynamic.
259 Language/06_Functions/06_Functions_A04_t01: Fail, OK 255 Language/06_Functions/06_Functions_A04_t01: Fail, OK
260 256
261 # co19 issue 646, I don't see where Spec requires any warning for boolean conver sion 257 # co19 issue 646, I don't see where Spec requires any warning for boolean conver sion
262 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t02: MissingStaticW arning 258 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t02: MissingStaticW arning
263 259
264 Language/12_Expressions/15_Method_Invocation/2_Cascaded_Invocation_A01_t19: Miss ingStaticWarning 260 Language/12_Expressions/15_Method_Invocation/2_Cascaded_Invocation_A01_t19: Miss ingStaticWarning
265 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t02: Missin gStaticWarning
266 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A04_t09: Missin gStaticWarning
267 Language/12_Expressions/19_Conditional_A01_t14: MissingStaticWarning 261 Language/12_Expressions/19_Conditional_A01_t14: MissingStaticWarning
268 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t10: MissingStaticWar ning 262 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t10: MissingStaticWar ning
269 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t11: MissingStaticWar ning 263 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t11: MissingStaticWar ning
270 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t12: MissingStaticWar ning 264 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t12: MissingStaticWar ning
271 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t13: MissingStaticWar ning 265 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t13: MissingStaticWar ning
272 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t14: MissingStaticWar ning 266 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t14: MissingStaticWar ning
273 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t15: MissingStaticWar ning 267 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t15: MissingStaticWar ning
274 Language/12_Expressions/20_Logical_Boolean_Expressions_A02_t02: MissingStaticWar ning 268 Language/12_Expressions/20_Logical_Boolean_Expressions_A02_t02: MissingStaticWar ning
275 Language/12_Expressions/20_Logical_Boolean_Expressions_A03_t01: MissingStaticWar ning 269 Language/12_Expressions/20_Logical_Boolean_Expressions_A03_t01: MissingStaticWar ning
276 Language/12_Expressions/20_Logical_Boolean_Expressions_A03_t02: MissingStaticWar ning 270 Language/12_Expressions/20_Logical_Boolean_Expressions_A03_t02: MissingStaticWar ning
(...skipping 11 matching lines...) Expand all
288 Language/13_Statements/15_Assert_A04_t04: MissingStaticWarning 282 Language/13_Statements/15_Assert_A04_t04: MissingStaticWarning
289 LibTest/collection/IterableMixin/IterableMixin_class_A01_t01: MissingStaticWarni ng 283 LibTest/collection/IterableMixin/IterableMixin_class_A01_t01: MissingStaticWarni ng
290 284
291 Language/05_Variables/05_Variables_A05_t04: MissingCompileTimeError # co19-roll r651: Please triage this failure 285 Language/05_Variables/05_Variables_A05_t04: MissingCompileTimeError # co19-roll r651: Please triage this failure
292 Language/05_Variables/05_Variables_A05_t05: MissingCompileTimeError # co19-roll r651: Please triage this failure 286 Language/05_Variables/05_Variables_A05_t05: MissingCompileTimeError # co19-roll r651: Please triage this failure
293 Language/05_Variables/05_Variables_A05_t06: MissingCompileTimeError # co19-roll r651: Please triage this failure 287 Language/05_Variables/05_Variables_A05_t06: MissingCompileTimeError # co19-roll r651: Please triage this failure
294 Language/05_Variables/05_Variables_A05_t07: MissingCompileTimeError # co19-roll r651: Please triage this failure 288 Language/05_Variables/05_Variables_A05_t07: MissingCompileTimeError # co19-roll r651: Please triage this failure
295 Language/05_Variables/05_Variables_A06_t01: MissingCompileTimeError # co19-roll r651: Please triage this failure 289 Language/05_Variables/05_Variables_A06_t01: MissingCompileTimeError # co19-roll r651: Please triage this failure
296 Language/05_Variables/05_Variables_A06_t02: MissingCompileTimeError # co19-roll r651: Please triage this failure 290 Language/05_Variables/05_Variables_A06_t02: MissingCompileTimeError # co19-roll r651: Please triage this failure
297 Language/05_Variables/05_Variables_A06_t03: MissingCompileTimeError # co19-roll r651: Please triage this failure 291 Language/05_Variables/05_Variables_A06_t03: MissingCompileTimeError # co19-roll r651: Please triage this failure
298 Language/07_Classes/8_Static_Variables_A01_t01: MissingStaticWarning # co19-roll r651: Please triage this failure
299 Language/12_Expressions/01_Constants_A20_t04: CompileTimeError # co19-roll r651: Please triage this failure 292 Language/12_Expressions/01_Constants_A20_t04: CompileTimeError # co19-roll r651: Please triage this failure
300 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t03: MissingStaticW arning # co19-roll r651: Please triage this failure 293 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t03: MissingStaticW arning # co19-roll r651: Please triage this failure
301 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t13: CompileTimeError # co19-roll r651: Please triage this failure 294 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t13: CompileTimeError # co19-roll r651: Please triage this failure
302 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t17: MissingCompileTimeError # co19-roll r651: Please triage this failure 295 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t17: MissingCompileTimeError # co19-roll r651: Please triage this failure
303 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t18: MissingCompileTimeError # co19-roll r651: Please triage this failure 296 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t18: MissingCompileTimeError # co19-roll r651: Please triage this failure
297
298 # co19 issue 656
299 LibTest/typed_data/Uint32x4/*: Skip # co19 issue 656
300 LibTest/typed_data/Float32x4/Float32x4.fromUint32x4Bits_A01_t01: Skip # co19 iss ue 656
301 LibTest/typed_data/Float32x4/Float32x4.fromUint32x4Bits_A01_t02: Skip # co19 iss ue 656
302 LibTest/typed_data/Float32x4/equal_A01_t01: Skip # co19 issue 656
303 LibTest/typed_data/Float32x4/notEqual_A01_t01: Skip # co19 issue 656
304 LibTest/typed_data/Float32x4/greaterThan_A01_t01: Skip # co19 issue 656
305 LibTest/typed_data/Float32x4/greaterThanOrEqual_A01_t01: Skip # co19 issue 656
306 LibTest/typed_data/Float32x4/lessThan_A01_t01: Skip # co19 issue 656
307 LibTest/typed_data/Float32x4/lessThanOrEqual_A01_t01: Skip # co19 issue 656
OLDNEW
« no previous file with comments | « dart/sdk/lib/typed_data/typed_data.dart ('k') | dart/tests/co19/co19-co19.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698