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

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

Issue 23581011: co19-roll to r576 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
« no previous file with comments | « dart/tests/co19/co19-analyzer.status ('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 == dart2analyzer ] 5 [ $compiler == dart2analyzer ]
6 # not clear: g([var foo = foo + 10]) is parameter 'foo' in the scope of its own initialzer? 6 # not clear: g([var foo = foo + 10]) is parameter 'foo' in the scope of its own initialzer?
7 Language/06_Functions/2_Formal_Parameters_A02_t02: fail 7 Language/06_Functions/2_Formal_Parameters_A02_t02: fail
8 8
9 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor e =5 it not assignable 9 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor e =5 it not assignable
10 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail 10 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 # co19 issue #455, undeclared identifier is static warning 71 # co19 issue #455, undeclared identifier is static warning
72 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK 72 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK
73 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK 73 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK
74 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK 74 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK
75 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK 75 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK
76 76
77 # co19 issue #513, rules for finals were loosened, contradiction in spec was fix ed 77 # co19 issue #513, rules for finals were loosened, contradiction in spec was fix ed
78 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: fail, OK 78 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: fail, OK
79 79
80 # co19 issue #514, it is still an error to have both a n initializing formal and an initializer in the constructor's initializer list
81 Language/05_Variables/05_Variables_A05_t03: fail, OK
82
83 # co19 issue #515, it is a compile-time error if there is more than one entity w ith the same name declared in the same scope
84 Language/07_Classes/3_Setters_A08_t01: fail, OK
85 Language/07_Classes/3_Setters_A08_t02: fail, OK
86 Language/07_Classes/3_Setters_A08_t04: fail, OK
87
88 # co19 issue #438, Static variables are initialized lazily, need not be constant s 80 # co19 issue #438, Static variables are initialized lazily, need not be constant s
89 Language/12_Expressions/01_Constants_A16_t01: fail, OK 81 Language/12_Expressions/01_Constants_A16_t01: fail, OK
90 Language/12_Expressions/01_Constants_A16_t02: fail, OK 82 Language/12_Expressions/01_Constants_A16_t02: fail, OK
91 83
92 # co19 issue #454 (wrongly closed) 84 # co19 issue #454 (wrongly closed)
93 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK 85 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK
94 86
95 # co19 issue #528, Const: wrong number of type arguments 87 # co19 issue #528, Const: wrong number of type arguments
96 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK 88 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK
97 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK 89 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK
98 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK 90 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK
99 91
100 # co19 issue #388 (wrongly closed), StringBuffer methods changed
101 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A02_t04: fail, O K
102
103 # co19 issue #433 (wrongly closed), missing @static-warning annotation 92 # co19 issue #433 (wrongly closed), missing @static-warning annotation
104 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t01: fail, OK 93 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t01: fail, OK
105 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t07: fail, OK 94 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t07: fail, OK
106 95
107 # co19 issue #541: tests contain unqualified reference to static members defined in superclass 96 # co19 issue #541: tests contain unqualified reference to static members defined in superclass
108 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t07: fail, OK 97 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t07: fail, OK
109 Language/12_Expressions/30_Identifier_Reference_A14_t03: fail, OK 98 Language/12_Expressions/30_Identifier_Reference_A14_t03: fail, OK
110 99
111 # co19 issue #543: invocation of a non-function 100 # co19 issue #543: invocation of a non-function
112 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_ A03_t02: fail, OK 101 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_ A03_t02: fail, OK
113 102
114 LibTest/core/NoSuchMethodError/NoSuchMethodError_A01_t01: Fail, OK # co19 issue 556
115
116 LibTest/async/Stream/listen_A04_t01: Fail, OK # co19 issue 557
117 LibTest/typed_data/ByteData/buffer_A01_t02: Fail, OK # co19 issue 557
118
119 Language/13_Statements/11_Return_A07_t01: fail # co19-roll r546: Please triage t his failure 103 Language/13_Statements/11_Return_A07_t01: fail # co19-roll r546: Please triage t his failure
120 Language/13_Statements/11_Try_A02_t03: fail # co19-roll r546: Please triage this failure
121 Language/13_Statements/11_Try_A03_t03: fail # co19-roll r546: Please triage this failure
122 Language/13_Statements/11_Try_A04_t03: fail # co19-roll r546: Please triage this failure
123 Language/14_Libraries_and_Scripts/1_Imports_A03_t27: fail # co19-roll r546: Plea se triage this failure 104 Language/14_Libraries_and_Scripts/1_Imports_A03_t27: fail # co19-roll r546: Plea se triage this failure
124 Language/14_Libraries_and_Scripts/1_Imports_A03_t47: fail # co19-roll r546: Plea se triage this failure 105 Language/14_Libraries_and_Scripts/1_Imports_A03_t47: fail # co19-roll r546: Plea se triage this failure
125 Language/14_Libraries_and_Scripts/1_Imports_A03_t67: fail # co19-roll r546: Plea se triage this failure 106 Language/14_Libraries_and_Scripts/1_Imports_A03_t67: fail # co19-roll r546: Plea se triage this failure
126 Language/14_Libraries_and_Scripts/2_Exports_A05_t01: fail # co19-roll r546: Plea se triage this failure 107 Language/14_Libraries_and_Scripts/2_Exports_A05_t01: fail # co19-roll r546: Plea se triage this failure
127 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail # co19-roll r546: Please triage this failure 108 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail # co19-roll r546: Please triage this failure
128 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail # co19-roll r546: Please triage this failure 109 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail # co19-roll r546: Please triage this failure
129 Language/15_Types/6_Type_dynamic_A03_t01: fail # co19-roll r546: Please triage t his failure 110 Language/15_Types/6_Type_dynamic_A03_t01: fail # co19-roll r546: Please triage t his failure
130 Language/15_Types/6_Type_dynamic_A04_t01: fail # co19-roll r546: Please triage t his failure 111 Language/15_Types/6_Type_dynamic_A04_t01: fail # co19-roll r546: Please triage t his failure
131 LibTest/async/EventTransformStream/asBroadcastStream_A01_t02: fail # co19-roll r 546: Please triage this failure 112 LibTest/async/EventTransformStream/asBroadcastStream_A01_t02: fail # co19-roll r 546: Please triage this failure
132 LibTest/async/EventTransformStream/distinct_A01_t02: fail # co19-roll r546: Plea se triage this failure 113 LibTest/async/EventTransformStream/distinct_A01_t02: fail # co19-roll r546: Plea se triage this failure
133 LibTest/async/EventTransformStream/drain_A02_t01: fail # co19-roll r546: Please triage this failure 114 LibTest/async/EventTransformStream/drain_A02_t01: fail # co19-roll r546: Please triage this failure
134 LibTest/async/EventTransformStream/drain_A02_t02: fail # co19-roll r546: Please triage this failure 115 LibTest/async/EventTransformStream/drain_A02_t02: fail # co19-roll r546: Please triage this failure
135 LibTest/async/EventTransformStream/EventTransformStream_A01_t02: fail # co19-rol l r546: Please triage this failure 116 LibTest/async/EventTransformStream/EventTransformStream_A01_t02: fail # co19-rol l r546: Please triage this failure
136 LibTest/async/EventTransformStream/expand_A01_t01: fail # co19-roll r546: Please triage this failure 117 LibTest/async/EventTransformStream/expand_A01_t01: fail # co19-roll r546: Please triage this failure
137 LibTest/async/EventTransformStream/first_A02_t01: fail # co19-roll r546: Please triage this failure 118 LibTest/async/EventTransformStream/first_A02_t01: fail # co19-roll r546: Please triage this failure
138 LibTest/async/EventTransformStream/handleError_A03_t01: fail # co19-roll r546: P lease triage this failure 119 LibTest/async/EventTransformStream/handleError_A03_t01: fail # co19-roll r546: P lease triage this failure
139 LibTest/async/EventTransformStream/listen_A03_t01: fail # co19-roll r546: Please triage this failure 120 LibTest/async/EventTransformStream/listen_A03_t01: fail # co19-roll r546: Please triage this failure
140 LibTest/async/Future/asStream_A01_t02: pass # co19-roll r546: Please triage this failure 121 LibTest/async/Future/asStream_A01_t02: pass # co19-roll r546: Please triage this failure
141 LibTest/async/Future/asStream_A02_t01: pass # co19-roll r546: Please triage this failure 122 LibTest/async/Future/asStream_A02_t01: pass # co19-roll r546: Please triage this failure
142 LibTest/async/Future/whenComplete_A03_t01: pass # co19-roll r546: Please triage this failure 123 LibTest/async/Future/whenComplete_A03_t01: pass # co19-roll r546: Please triage this failure
143 LibTest/async/Stream/asBroadcastStream_A01_t02: fail # co19-roll r546: Please tr iage this failure 124 LibTest/async/Stream/asBroadcastStream_A01_t02: fail # co19-roll r546: Please tr iage this failure
144 LibTest/async/Stream/asBroadcastStream_A02_t01: fail # co19-roll r546: Please tr iage this failure 125 LibTest/async/Stream/asBroadcastStream_A02_t01: fail # co19-roll r546: Please tr iage this failure
145 LibTest/async/Stream/contains_A03_t01: fail # co19-roll r546: Please triage this failure 126 LibTest/async/Stream/contains_A03_t01: fail # co19-roll r546: Please triage this failure
146 LibTest/async/StreamController/hasListener_A01_t01: fail # co19-roll r546: Pleas e triage this failure 127 LibTest/async/StreamController/hasListener_A01_t01: fail # co19-roll r546: Pleas e triage this failure
147 LibTest/async/StreamController/hasListener_A01_t02: fail # co19-roll r546: Pleas e triage this failure 128 LibTest/async/StreamController/hasListener_A01_t02: fail # co19-roll r546: Pleas e triage this failure
148 LibTest/async/StreamController/isClosed_A01_t01: fail # co19-roll r546: Please t riage this failure
149 LibTest/async/StreamController/isClosed_A01_t02: fail # co19-roll r546: Please t riage this failure
150 LibTest/async/StreamController/isPaused_A01_t01: fail # co19-roll r546: Please t riage this failure 129 LibTest/async/StreamController/isPaused_A01_t01: fail # co19-roll r546: Please t riage this failure
151 LibTest/async/StreamController/isPaused_A01_t03: fail # co19-roll r546: Please t riage this failure 130 LibTest/async/StreamController/isPaused_A01_t03: fail # co19-roll r546: Please t riage this failure
152 LibTest/async/StreamController/sink_A01_t01: fail # co19-roll r546: Please triag e this failure 131 LibTest/async/StreamController/sink_A01_t01: fail # co19-roll r546: Please triag e this failure
153 LibTest/async/StreamController/StreamController.broadcast_A04_t01: fail # co19-r oll r546: Please triage this failure 132 LibTest/async/StreamController/StreamController.broadcast_A04_t01: fail # co19-r oll r546: Please triage this failure
154 LibTest/async/Stream/distinct_A01_t01: fail # co19-roll r546: Please triage this failure 133 LibTest/async/Stream/distinct_A01_t01: fail # co19-roll r546: Please triage this failure
155 LibTest/async/Stream/distinct_A01_t02: fail # co19-roll r546: Please triage this failure 134 LibTest/async/Stream/distinct_A01_t02: fail # co19-roll r546: Please triage this failure
156 LibTest/async/Stream/drain_A02_t01: fail # co19-roll r546: Please triage this fa ilure 135 LibTest/async/Stream/drain_A02_t01: fail # co19-roll r546: Please triage this fa ilure
157 LibTest/async/Stream/drain_A02_t02: fail # co19-roll r546: Please triage this fa ilure 136 LibTest/async/Stream/drain_A02_t02: fail # co19-roll r546: Please triage this fa ilure
158 LibTest/async/StreamEventTransformer/handleData_A01_t01: fail # co19-roll r546: Please triage this failure 137 LibTest/async/StreamEventTransformer/handleData_A01_t01: fail # co19-roll r546: Please triage this failure
159 LibTest/async/StreamEventTransformer/handleDone_A01_t01: fail # co19-roll r546: Please triage this failure 138 LibTest/async/StreamEventTransformer/handleDone_A01_t01: fail # co19-roll r546: Please triage this failure
(...skipping 11 matching lines...) Expand all
171 LibTest/async/Timer/cancel_A01_t01: fail # co19-roll r546: Please triage this fa ilure 150 LibTest/async/Timer/cancel_A01_t01: fail # co19-roll r546: Please triage this fa ilure
172 LibTest/core/DateTime/subtract_A02_t01: fail # co19-roll r546: Please triage thi s failure 151 LibTest/core/DateTime/subtract_A02_t01: fail # co19-roll r546: Please triage thi s failure
173 LibTest/core/Duration/operator_div_A01_t01: fail # co19-roll r546: Please triage this failure 152 LibTest/core/Duration/operator_div_A01_t01: fail # co19-roll r546: Please triage this failure
174 LibTest/core/Duration/operator_eq_A01_t01: fail # co19-roll r546: Please triage this failure 153 LibTest/core/Duration/operator_eq_A01_t01: fail # co19-roll r546: Please triage this failure
175 LibTest/core/Duration/operator_gt_A01_t01: fail # co19-roll r546: Please triage this failure 154 LibTest/core/Duration/operator_gt_A01_t01: fail # co19-roll r546: Please triage this failure
176 LibTest/core/Duration/operator_lt_A01_t01: fail # co19-roll r546: Please triage this failure 155 LibTest/core/Duration/operator_lt_A01_t01: fail # co19-roll r546: Please triage this failure
177 LibTest/core/Duration/operator_lte_A01_t01: fail # co19-roll r546: Please triage this failure 156 LibTest/core/Duration/operator_lte_A01_t01: fail # co19-roll r546: Please triage this failure
178 LibTest/core/Duration/operator_minus_A01_t01: fail # co19-roll r546: Please tria ge this failure 157 LibTest/core/Duration/operator_minus_A01_t01: fail # co19-roll r546: Please tria ge this failure
179 LibTest/core/Duration/operator_mult_A01_t01: fail # co19-roll r546: Please triag e this failure 158 LibTest/core/Duration/operator_mult_A01_t01: fail # co19-roll r546: Please triag e this failure
180 LibTest/core/Duration/operator_plus_A01_t01: fail # co19-roll r546: Please triag e this failure 159 LibTest/core/Duration/operator_plus_A01_t01: fail # co19-roll r546: Please triag e this failure
181 LibTest/core/List/asMap_A01_t01: fail # co19-roll r546: Please triage this failu re
182 LibTest/core/List/every_A03_t01: fail # co19-roll r546: Please triage this failu re 160 LibTest/core/List/every_A03_t01: fail # co19-roll r546: Please triage this failu re
183 LibTest/core/List/forEach_A01_t02: fail # co19-roll r546: Please triage this fai lure 161 LibTest/core/List/forEach_A01_t02: fail # co19-roll r546: Please triage this fai lure
184 LibTest/core/List/lastWhere_A03_t01: fail # co19-roll r546: Please triage this f ailure 162 LibTest/core/List/lastWhere_A03_t01: fail # co19-roll r546: Please triage this f ailure
185 LibTest/core/List/List_A01_t03: fail # co19-roll r546: Please triage this failur e 163 LibTest/core/List/List_A01_t03: fail # co19-roll r546: Please triage this failur e
186 LibTest/core/List/List.filled_A01_t01: fail # co19-roll r546: Please triage this failure 164 LibTest/core/List/List.filled_A01_t01: fail # co19-roll r546: Please triage this failure
187 LibTest/core/List/List.from_A01_t03: fail # co19-roll r546: Please triage this f ailure 165 LibTest/core/List/List.from_A01_t03: fail # co19-roll r546: Please triage this f ailure
188 LibTest/core/List/List.generate_A01_t01: fail # co19-roll r546: Please triage th is failure 166 LibTest/core/List/List.generate_A01_t01: fail # co19-roll r546: Please triage th is failure
189 LibTest/core/List/List.generate_A01_t02: fail # co19-roll r546: Please triage th is failure 167 LibTest/core/List/List.generate_A01_t02: fail # co19-roll r546: Please triage th is failure
190 LibTest/core/List/List.generate_A01_t03: fail # co19-roll r546: Please triage th is failure 168 LibTest/core/List/List.generate_A01_t03: fail # co19-roll r546: Please triage th is failure
191 LibTest/core/List/map_A02_t01: fail # co19-roll r546: Please triage this failure 169 LibTest/core/List/map_A02_t01: fail # co19-roll r546: Please triage this failure
192 LibTest/core/List/replaceRange_A01_t01: fail # co19-roll r546: Please triage thi s failure 170 LibTest/core/List/replaceRange_A01_t01: fail # co19-roll r546: Please triage thi s failure
193 LibTest/core/List/replaceRange_A01_t02: fail # co19-roll r546: Please triage thi s failure 171 LibTest/core/List/replaceRange_A01_t02: fail # co19-roll r546: Please triage thi s failure
194 LibTest/core/List/skipWhile_A02_t01: fail # co19-roll r546: Please triage this f ailure 172 LibTest/core/List/skipWhile_A02_t01: fail # co19-roll r546: Please triage this f ailure
195 LibTest/core/List/takeWhile_A02_t01: fail # co19-roll r546: Please triage this f ailure 173 LibTest/core/List/takeWhile_A02_t01: fail # co19-roll r546: Please triage this f ailure
196 LibTest/core/List/toList_A01_t03: fail # co19-roll r546: Please triage this fail ure 174 LibTest/core/List/toList_A01_t03: fail # co19-roll r546: Please triage this fail ure
197 LibTest/core/StringBuffer/writeAll_A03_t01: fail # co19-roll r546: Please triage this failure 175 LibTest/core/StringBuffer/writeAll_A03_t01: fail # co19-roll r546: Please triage this failure
198 LibTest/isolate/isolate_api/streamSpawnFunction_A01_t01: fail # co19-roll r546: Please triage this failure 176 LibTest/isolate/isolate_api/streamSpawnFunction_A01_t01: fail # co19-roll r546: Please triage this failure
177 LibTest/isolate/isolate_api/streamSpawnFunction_A02_t01: fail # co19-roll r576: Please triage this failure
199 LibTest/isolate/IsolateSink/add_A01_t02: fail # co19-roll r546: Please triage th is failure 178 LibTest/isolate/IsolateSink/add_A01_t02: fail # co19-roll r546: Please triage th is failure
200 LibTest/isolate/IsolateSink/addError_A01_t01: fail # co19-roll r546: Please tria ge this failure 179 LibTest/isolate/IsolateSink/addError_A01_t01: fail # co19-roll r546: Please tria ge this failure
201 LibTest/isolate/IsolateSink/addError_A01_t02: fail # co19-roll r546: Please tria ge this failure 180 LibTest/isolate/IsolateSink/addError_A01_t02: fail # co19-roll r546: Please tria ge this failure
202 LibTest/isolate/IsolateSink/operator_equality_A01_t01: fail # co19-roll r546: Pl ease triage this failure 181 LibTest/isolate/IsolateSink/operator_equality_A01_t01: fail # co19-roll r546: Pl ease triage this failure
203 LibTest/isolate/IsolateStream/any_A02_t01: fail # co19-roll r546: Please triage this failure 182 LibTest/isolate/IsolateStream/any_A02_t01: fail # co19-roll r546: Please triage this failure
204 LibTest/isolate/IsolateStream/asBroadcastStream_A01_t01: fail # co19-roll r546: Please triage this failure 183 LibTest/isolate/IsolateStream/asBroadcastStream_A01_t01: fail # co19-roll r546: Please triage this failure
205 LibTest/isolate/IsolateStream/contains_A01_t01: fail # co19-roll r546: Please tr iage this failure 184 LibTest/isolate/IsolateStream/contains_A01_t01: fail # co19-roll r546: Please tr iage this failure
206 LibTest/isolate/IsolateStream/contains_A02_t01: fail # co19-roll r546: Please tr iage this failure 185 LibTest/isolate/IsolateStream/contains_A02_t01: fail # co19-roll r546: Please tr iage this failure
207 LibTest/isolate/IsolateStream/isBroadcast_A01_t02: fail # co19-roll r546: Please triage this failure 186 LibTest/isolate/IsolateStream/isBroadcast_A01_t02: fail # co19-roll r546: Please triage this failure
OLDNEW
« no previous file with comments | « dart/tests/co19/co19-analyzer.status ('k') | dart/tests/co19/co19-co19.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698