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

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

Issue 2926533004: Semantic checks on switch cases and fall-through errors. (Closed)
Patch Set: Address review comments. Created 3 years, 6 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
« no previous file with comments | « tests/co19/co19-kernel.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) 2016, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2016, 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 == dartk || $compiler == dartkp ] 5 [ $compiler == dartk || $compiler == dartkp ]
6 compile_time_constant_test/01: MissingCompileTimeError 6 compile_time_constant_test/01: MissingCompileTimeError
7 conditional_method_invocation_test/11: MissingCompileTimeError 7 conditional_method_invocation_test/11: MissingCompileTimeError
8 conditional_property_access_test/09: MissingCompileTimeError 8 conditional_property_access_test/09: MissingCompileTimeError
9 conditional_property_assignment_test/20: MissingCompileTimeError 9 conditional_property_assignment_test/20: MissingCompileTimeError
10 conditional_property_assignment_test/21: MissingCompileTimeError 10 conditional_property_assignment_test/21: MissingCompileTimeError
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 super_conditional_operator_test/07: MissingCompileTimeError 134 super_conditional_operator_test/07: MissingCompileTimeError
135 super_conditional_operator_test/08: MissingCompileTimeError 135 super_conditional_operator_test/08: MissingCompileTimeError
136 super_conditional_operator_test/09: MissingCompileTimeError 136 super_conditional_operator_test/09: MissingCompileTimeError
137 super_conditional_operator_test/10: MissingCompileTimeError 137 super_conditional_operator_test/10: MissingCompileTimeError
138 super_conditional_operator_test/11: MissingCompileTimeError 138 super_conditional_operator_test/11: MissingCompileTimeError
139 super_conditional_operator_test/12: MissingCompileTimeError 139 super_conditional_operator_test/12: MissingCompileTimeError
140 super_conditional_operator_test/13: MissingCompileTimeError 140 super_conditional_operator_test/13: MissingCompileTimeError
141 super_conditional_operator_test/14: MissingCompileTimeError 141 super_conditional_operator_test/14: MissingCompileTimeError
142 super_conditional_operator_test/15: MissingCompileTimeError 142 super_conditional_operator_test/15: MissingCompileTimeError
143 super_conditional_operator_test/16: MissingCompileTimeError 143 super_conditional_operator_test/16: MissingCompileTimeError
144 switch1_negative_test: Fail
145 syntax_test/02: MissingCompileTimeError 144 syntax_test/02: MissingCompileTimeError
146 syntax_test/03: MissingCompileTimeError 145 syntax_test/03: MissingCompileTimeError
147 syntax_test/27: MissingCompileTimeError 146 syntax_test/27: MissingCompileTimeError
148 this_conditional_operator_test/01: MissingCompileTimeError 147 this_conditional_operator_test/01: MissingCompileTimeError
149 try_catch_syntax_test/07: MissingCompileTimeError 148 try_catch_syntax_test/07: MissingCompileTimeError
150 try_catch_syntax_test/09: MissingCompileTimeError 149 try_catch_syntax_test/09: MissingCompileTimeError
151 try_catch_syntax_test/10: MissingCompileTimeError 150 try_catch_syntax_test/10: MissingCompileTimeError
152 try_catch_syntax_test/11: MissingCompileTimeError 151 try_catch_syntax_test/11: MissingCompileTimeError
153 try_catch_syntax_test/12: MissingCompileTimeError 152 try_catch_syntax_test/12: MissingCompileTimeError
154 vm/regress_27201_test: CompileTimeError 153 vm/regress_27201_test: CompileTimeError
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 deferred_static_seperate_test: CompileTimeError # Deferred loading kernel issue 28335. 458 deferred_static_seperate_test: CompileTimeError # Deferred loading kernel issue 28335.
460 deferred_super_dependency_test/01: CompileTimeError # Deferred loading kernel is sue 28335. 459 deferred_super_dependency_test/01: CompileTimeError # Deferred loading kernel is sue 28335.
461 deferred_type_dependency_test/as: CompileTimeError # Deferred loading kernel iss ue 28335. 460 deferred_type_dependency_test/as: CompileTimeError # Deferred loading kernel iss ue 28335.
462 deferred_type_dependency_test/is: CompileTimeError # Deferred loading kernel iss ue 28335. 461 deferred_type_dependency_test/is: CompileTimeError # Deferred loading kernel iss ue 28335.
463 deferred_type_dependency_test/none: CompileTimeError # Deferred loading kernel i ssue 28335. 462 deferred_type_dependency_test/none: CompileTimeError # Deferred loading kernel i ssue 28335.
464 deferred_type_dependency_test/type_annotation: CompileTimeError # Deferred loadi ng kernel issue 28335. 463 deferred_type_dependency_test/type_annotation: CompileTimeError # Deferred loadi ng kernel issue 28335.
465 issue_1751477_test: CompileTimeError # Deferred loading kernel issue 28335. 464 issue_1751477_test: CompileTimeError # Deferred loading kernel issue 28335.
466 regress_22443_test: CompileTimeError # Deferred loading kernel issue 28335. 465 regress_22443_test: CompileTimeError # Deferred loading kernel issue 28335.
467 regress_23408_test: CompileTimeError # Deferred loading kernel issue 28335. 466 regress_23408_test: CompileTimeError # Deferred loading kernel issue 28335.
468 regress_28278_test: CompileTimeError # Deferred loading kernel issue 28335. 467 regress_28278_test: CompileTimeError # Deferred loading kernel issue 28335.
OLDNEW
« no previous file with comments | « tests/co19/co19-kernel.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698