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

Side by Side Diff: tests/language_2/language_2_analyzer.status

Issue 2996533003: Migrate language block 46 - canonical_const ... char_escape. (Closed)
Patch Set: Created 3 years, 4 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
OLDNEW
1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2017, 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 # Sections in this file should contain "$compiler == dart2analyzer". 5 # Sections in this file should contain "$compiler == dart2analyzer".
6 6
7 # Analyzer only implements Dart 2.0 static type checking with "--strong". 7 # Analyzer only implements Dart 2.0 static type checking with "--strong".
8 [ $compiler == dart2analyzer && ! $strong && ! $checked ] 8 [ $compiler == dart2analyzer && ! $strong && ! $checked ]
9 abstract_beats_arguments_test: MissingCompileTimeError 9 abstract_beats_arguments_test: MissingCompileTimeError
10 abstract_exact_selector_test/01: MissingCompileTimeError 10 abstract_exact_selector_test/01: MissingCompileTimeError
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 bad_initializer1_negative_test: CompileTimeError # Issue 14529 97 bad_initializer1_negative_test: CompileTimeError # Issue 14529
98 bad_initializer2_negative_test: fail # Issue 14880 98 bad_initializer2_negative_test: fail # Issue 14880
99 bad_named_constructor_negative_test: CompileTimeError # Issue 18693 99 bad_named_constructor_negative_test: CompileTimeError # Issue 18693
100 bit_operations_test/01: MissingCompileTimeError 100 bit_operations_test/01: MissingCompileTimeError
101 bit_operations_test/02: MissingCompileTimeError 101 bit_operations_test/02: MissingCompileTimeError
102 bit_operations_test/03: MissingCompileTimeError 102 bit_operations_test/03: MissingCompileTimeError
103 bit_operations_test/04: MissingCompileTimeError 103 bit_operations_test/04: MissingCompileTimeError
104 black_listed_test/none: fail # Issue 14228 104 black_listed_test/none: fail # Issue 14228
105 body_less_constructor_wrong_arg_negative_test: CompileTimeError # Issue 18695 105 body_less_constructor_wrong_arg_negative_test: CompileTimeError # Issue 18695
106 built_in_identifier_prefix_test: CompileTimeError 106 built_in_identifier_prefix_test: CompileTimeError
107 cascade_test/none: fail # Issue 11577
108 cast_test/04: MissingCompileTimeError
109 cast_test/05: MissingCompileTimeError
107 110
108 [ $strong && $compiler == dart2analyzer ] 111 [ $strong && $compiler == dart2analyzer ]
109 accessor_conflict_export2_test: CompileTimeError # Issue 25626 112 accessor_conflict_export2_test: CompileTimeError # Issue 25626
110 accessor_conflict_export_test: CompileTimeError # Issue 25626 113 accessor_conflict_export_test: CompileTimeError # Issue 25626
111 accessor_conflict_import2_test: CompileTimeError # Issue 25626 114 accessor_conflict_import2_test: CompileTimeError # Issue 25626
112 accessor_conflict_import_prefixed2_test: CompileTimeError # Issue 25626 115 accessor_conflict_import_prefixed2_test: CompileTimeError # Issue 25626
113 accessor_conflict_import_prefixed_test: CompileTimeError # Issue 25626 116 accessor_conflict_import_prefixed_test: CompileTimeError # Issue 25626
114 accessor_conflict_import_test: CompileTimeError # Issue 25626 117 accessor_conflict_import_test: CompileTimeError # Issue 25626
115 async_return_types_test/nestedFuture: MissingCompileTimeError 118 async_return_types_test/nestedFuture: MissingCompileTimeError
116 bit_operations_test/01: MissingStaticWarning # Issue 28823 119 bit_operations_test/01: MissingStaticWarning # Issue 28823
117 bit_operations_test/02: MissingStaticWarning # Issue 28823 120 bit_operations_test/02: MissingStaticWarning # Issue 28823
118 bit_operations_test/03: MissingStaticWarning # Issue 28823 121 bit_operations_test/03: MissingStaticWarning # Issue 28823
119 bit_operations_test/04: MissingStaticWarning # Issue 28823 122 bit_operations_test/04: MissingStaticWarning # Issue 28823
120 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302 07 123 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302 07
121 124
122 [ ! $strong && $compiler == dart2analyzer ] 125 [ ! $strong && $compiler == dart2analyzer ]
123 accessor_conflict_export2_test: StaticWarning # Issue 25626 126 accessor_conflict_export2_test: StaticWarning # Issue 25626
124 accessor_conflict_export_test: StaticWarning # Issue 25626 127 accessor_conflict_export_test: StaticWarning # Issue 25626
125 accessor_conflict_import2_test: StaticWarning # Issue 25626 128 accessor_conflict_import2_test: StaticWarning # Issue 25626
126 accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25626 129 accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25626
127 accessor_conflict_import_prefixed_test: StaticWarning # Issue 25626 130 accessor_conflict_import_prefixed_test: StaticWarning # Issue 25626
128 accessor_conflict_import_test: StaticWarning # Issue 25626 131 accessor_conflict_import_test: StaticWarning # Issue 25626
129 generic_methods_generic_function_result_test/01: MissingCompileTimeError # Issue #30207 132 generic_methods_generic_function_result_test/01: MissingCompileTimeError # Issue #30207
130 133
131 [ $compiler == dart2analyzer && $runtime == none ] 134 [ $compiler == dart2analyzer && $runtime == none ]
132 assertion_initializer_const_error2_test/none: CompileTimeError 135 assertion_initializer_const_error2_test/none: CompileTimeError
133 assertion_initializer_const_function_test/01: CompileTimeError 136 assertion_initializer_const_function_test/01: CompileTimeError
134 assertion_initializer_test: CompileTimeError 137 assertion_initializer_test: CompileTimeError
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698