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

Side by Side Diff: tests/co19/co19-dart2js.status

Issue 25504002: Emit a compile-time error for uninitialized final variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 && $runtime == jsshell ] 5 [ $compiler == dart2js && $runtime == jsshell ]
6 LibTest/isolate/isolate_api/spawnUri_A02_t01: Crash # TODO(ahe): Please triage t his crash. 6 LibTest/isolate/isolate_api/spawnUri_A02_t01: Crash # TODO(ahe): Please triage t his crash.
7 LibTest/core/List/sort_A01_t04: Fail, Pass, Timeout # Must be a bug in jsshell, test sometimes times out. 7 LibTest/core/List/sort_A01_t04: Fail, Pass, Timeout # Must be a bug in jsshell, test sometimes times out.
8 8
9 [ $compiler == dart2js && $checked && $runtime == ie9 ] 9 [ $compiler == dart2js && $checked && $runtime == ie9 ]
10 LibTest/core/Uri/encodeQueryComponent_A01_t02: Pass, Timeout # co19-roll r576: P lease triage this failure 10 LibTest/core/Uri/encodeQueryComponent_A01_t02: Pass, Timeout # co19-roll r576: P lease triage this failure
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 149
150 150
151 # 151 #
152 # Issues with co19 test suite. 152 # Issues with co19 test suite.
153 # 153 #
154 # If you add anything here, either file a bug against the Dart 154 # If you add anything here, either file a bug against the Dart
155 # language specification, co19 test suite, or add a comment that ahe@ 155 # language specification, co19 test suite, or add a comment that ahe@
156 # can understand so he can file a bug later. 156 # can understand so he can file a bug later.
157 # 157 #
158 [ $compiler == dart2js ] 158 [ $compiler == dart2js ]
159 Language/05_Variables/05_Variables_A06_t02: CompileTimeError, OK # dartbug.com/1 2543
160 Language/05_Variables/05_Variables_A06_t03: CompileTimeError, OK # dartbug.com/1 2543
159 Language/03_Overview/2_Privacy_A01_t09: RuntimeError, OK # co19 issue 198 161 Language/03_Overview/2_Privacy_A01_t09: RuntimeError, OK # co19 issue 198
160 Language/03_Overview/2_Privacy_A01_t11: Pass, OK # co19 issue 316 162 Language/03_Overview/2_Privacy_A01_t11: Pass, OK # co19 issue 316
161 Language/06_Functions/4_External_Functions_A01_t01: CompileTimeError, OK # http: //dartbug.com/5021 163 Language/06_Functions/4_External_Functions_A01_t01: CompileTimeError, OK # http: //dartbug.com/5021
162 LibTest/core/int/hashCode_A01_t01: RuntimeError, OK # co19 issue 308 164 LibTest/core/int/hashCode_A01_t01: RuntimeError, OK # co19 issue 308
163 LibTest/typed_data/Int64List/*: Fail # co19-roll r559: Please triage this failur e 165 LibTest/typed_data/Int64List/*: Fail # co19-roll r559: Please triage this failur e
164 LibTest/typed_data/Int64List/Int64List_A02_t01: pass # co19-roll r559: Please tr iage this failure 166 LibTest/typed_data/Int64List/Int64List_A02_t01: pass # co19-roll r559: Please tr iage this failure
165 LibTest/typed_data/Uint64List/*: Fail # co19-roll r559: Please triage this failu re 167 LibTest/typed_data/Uint64List/*: Fail # co19-roll r559: Please triage this failu re
166 LibTest/typed_data/Uint64List/Uint64List_A02_t01: pass # co19-roll r559: Please triage this failure 168 LibTest/typed_data/Uint64List/Uint64List_A02_t01: pass # co19-roll r559: Please triage this failure
167 LibTest/typed_data/ByteData/*Uint64*: fail # co19-roll r569: Please triage this failure 169 LibTest/typed_data/ByteData/*Uint64*: fail # co19-roll r569: Please triage this failure
168 LibTest/typed_data/ByteData/*Int64*: fail # co19-roll r569: Please triage this f ailure 170 LibTest/typed_data/ByteData/*Int64*: fail # co19-roll r569: Please triage this f ailure
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 LibTest/math/log_A01_t01: Fail # TODO(kasperl): Please triage. 308 LibTest/math/log_A01_t01: Fail # TODO(kasperl): Please triage.
307 309
308 310
309 [ $compiler == dart2js && ($runtime == ie10 || $runtime == ff || $runtime == chr ome || $runtime == drt || $runtime == safari || $runtime == opera) ] 311 [ $compiler == dart2js && ($runtime == ie10 || $runtime == ff || $runtime == chr ome || $runtime == drt || $runtime == safari || $runtime == opera) ]
310 *: Skip 312 *: Skip
311 313
312 # 314 #
313 # Missing compile-time errors. 315 # Missing compile-time errors.
314 # 316 #
315 [ $compiler == dart2js ] 317 [ $compiler == dart2js ]
316 Language/07_Classes/07_Classes_A02_t11: MissingCompileTimeError # Checks that it is a compile-time error if a static final variable declaration does not include explicit initializer.
317 Language/12_Expressions/01_Constants_A20_t03: MissingCompileTimeError # Checks t hat an identifier expression that denotes a type parameter can not be assigned to a constant variable. 318 Language/12_Expressions/01_Constants_A20_t03: MissingCompileTimeError # Checks t hat an identifier expression that denotes a type parameter can not be assigned to a constant variable.
318 Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: MissingCompil eTimeError # Checks that it is a compile-time error if a string interpolation co nstruct does not start with IDENTIFIER_NO_DOLLAR or opening brace. 319 Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: MissingCompil eTimeError # Checks that it is a compile-time error if a string interpolation co nstruct does not start with IDENTIFIER_NO_DOLLAR or opening brace.
319 Language/12_Expressions/05_Strings_A02_t46: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors. 320 Language/12_Expressions/05_Strings_A02_t46: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors.
320 Language/12_Expressions/05_Strings_A02_t48: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors. 321 Language/12_Expressions/05_Strings_A02_t48: MissingCompileTimeError # Checks tha t multi-line strings that contain characters and sequences prohibited by this gr ammar, cause compile-time errors.
321 Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: MissingCompileTi meError # Checks that other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0) 322 Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: MissingCompileTi meError # Checks that other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0)
322 Language/16_Reference/1_Lexical_Rules_A02_t06: MissingCompileTimeError # Checks that Unicode whitespaces other than WHITESPACE are not permitted in the source c ode. Checks symbol U+00a0. 323 Language/16_Reference/1_Lexical_Rules_A02_t06: MissingCompileTimeError # Checks that Unicode whitespaces other than WHITESPACE are not permitted in the source c ode. Checks symbol U+00a0.
323 324
324 325
325 # 326 #
326 # Unexpected compile-time errors. 327 # Unexpected compile-time errors.
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 [ $compiler == dart2js ] 621 [ $compiler == dart2js ]
621 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure 622 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure
622 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure 623 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t04: fail # co19- roll r587: Please triage this failure
623 LibTest/json/stringify_A01_t01: fail # co19-roll r587: Please triage this failur e 624 LibTest/json/stringify_A01_t01: fail # co19-roll r587: Please triage this failur e
624 LibTest/json/stringify_A02_t01: fail # co19-roll r587: Please triage this failur e 625 LibTest/json/stringify_A02_t01: fail # co19-roll r587: Please triage this failur e
625 LibTest/json/printOn_A01_t01: fail # co19-roll r587: Please triage this failure 626 LibTest/json/printOn_A01_t01: fail # co19-roll r587: Please triage this failure
626 LibTest/json/printOn_A02_t01: fail # co19-roll r587: Please triage this failure 627 LibTest/json/printOn_A02_t01: fail # co19-roll r587: Please triage this failure
627 LibTest/math/pow_A04_t01: fail # co19-roll r587: Please triage this failure 628 LibTest/math/pow_A04_t01: fail # co19-roll r587: Please triage this failure
628 LibTest/math/pow_A14_t01: fail # co19-roll r587: Please triage this failure 629 LibTest/math/pow_A14_t01: fail # co19-roll r587: Please triage this failure
629 LibTest/math/pow_A16_t01: fail # co19-roll r587: Please triage this failure 630 LibTest/math/pow_A16_t01: fail # co19-roll r587: Please triage this failure
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698