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

Side by Side Diff: tests/corelib/corelib.status

Issue 674953002: Fix type of String.fromEnvironment() when the name is undefined. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 == dart2dart] 5 [ $compiler == dart2dart]
6 bool_from_environment2_test: Skip 6 bool_from_environment2_test: Skip
7 bool_from_environment_default_value_test: Skip 7 bool_from_environment_default_value_test: Skip
8 bool_from_environment_test: Skip 8 bool_from_environment_test: Skip
9 int_from_environment2_test: Skip 9 int_from_environment2_test: Skip
10 int_from_environment3_test: Skip 10 int_from_environment3_test: Skip
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 unicode_test: Fail # inherited from VM 139 unicode_test: Fail # inherited from VM
140 140
141 [ $compiler == dart2dart && $minified ] 141 [ $compiler == dart2dart && $minified ]
142 error_stack_trace1_test: Fail # Fails in minified mode, test depends on method n ames. 142 error_stack_trace1_test: Fail # Fails in minified mode, test depends on method n ames.
143 143
144 [ $compiler == dartanalyzer ] 144 [ $compiler == dartanalyzer ]
145 int_parse_radix_test: Fail, OK # Test contains errors but doesn’t mark them as e xpected 145 int_parse_radix_test: Fail, OK # Test contains errors but doesn’t mark them as e xpected
146 list_insert_test: Fail, OK # Test contains errors but doesn’t mark them as expec ted 146 list_insert_test: Fail, OK # Test contains errors but doesn’t mark them as expec ted
147 list_removeat_test: Fail, OK # Test contains errors but doesn’t mark them as exp ected 147 list_removeat_test: Fail, OK # Test contains errors but doesn’t mark them as exp ected
148 148
149 # Issue 16391. These tests are supposed to produce a compile time
150 # error in checked mode, but they don't:
151 [ $compiler == dartanalyzer && $checked ]
152 from_environment_const_type_test/02: MissingCompileTimeError # Issue 16391
153 from_environment_const_type_test/03: MissingCompileTimeError # Issue 16391
154 from_environment_const_type_test/04: MissingCompileTimeError # Issue 16391
155 from_environment_const_type_test/06: MissingCompileTimeError # Issue 16391
156 from_environment_const_type_test/07: MissingCompileTimeError # Issue 16391
157 from_environment_const_type_test/08: MissingCompileTimeError # Issue 16391
158 from_environment_const_type_test/09: MissingCompileTimeError # Issue 16391
159 from_environment_const_type_test/11: MissingCompileTimeError # Issue 16391
160 from_environment_const_type_test/12: MissingCompileTimeError # Issue 16391
161 from_environment_const_type_test/13: MissingCompileTimeError # Issue 16391
162 from_environment_const_type_test/14: MissingCompileTimeError # Issue 16391
163 from_environment_const_type_test/16: MissingCompileTimeError # Issue 16391
164 from_environment_const_type_undefined_test/02: MissingCompileTimeError # Issue 1 6391
165 from_environment_const_type_undefined_test/03: MissingCompileTimeError # Issue 1 6391
166 from_environment_const_type_undefined_test/04: MissingCompileTimeError # Issue 1 6391
167 from_environment_const_type_undefined_test/06: MissingCompileTimeError # Issue 1 6391
168 from_environment_const_type_undefined_test/07: MissingCompileTimeError # Issue 1 6391
169 from_environment_const_type_undefined_test/08: MissingCompileTimeError # Issue 1 6391
170
171 # Analyzer's implementation of fromEnvironment assumes that undefined
172 # environment variables have an unspecified value (rather than being
173 # null) because it is expected that the user will supply a value when
174 # the code is run. This means that it produces slightly different
175 # error messages than the VM and Dart2js.
176 [ $compiler == dart2analyzer && $checked ]
177 from_environment_const_type_undefined_test/09: CompileTimeError
178 from_environment_const_type_undefined_test/11: CompileTimeError
179 from_environment_const_type_undefined_test/12: CompileTimeError
180 from_environment_const_type_undefined_test/13: CompileTimeError
181 from_environment_const_type_undefined_test/14: CompileTimeError
182 from_environment_const_type_undefined_test/16: CompileTimeError
183
149 [ $compiler == dart2analyzer ] 184 [ $compiler == dart2analyzer ]
150 int_parse_radix_test: fail 185 int_parse_radix_test: fail
151 list_insert_test: fail 186 list_insert_test: fail
152 list_removeat_test: fail 187 list_removeat_test: fail
153 188
154 [ $arch == simarm || $arch == simarm64 ] 189 [ $arch == simarm || $arch == simarm64 ]
155 big_integer_parsed_*: Pass, Slow 190 big_integer_parsed_*: Pass, Slow
156 191
157 [ $arch == simmips ] 192 [ $arch == simmips ]
158 int_parse_radix_test: Skip # Timeout 193 int_parse_radix_test: Skip # Timeout
(...skipping 14 matching lines...) Expand all
173 [ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim) ] 208 [ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim) ]
174 list_test/01: Fail # Safari bug: Array(-2) seen as dead code. 209 list_test/01: Fail # Safari bug: Array(-2) seen as dead code.
175 210
176 [ $runtime == ie10 ] 211 [ $runtime == ie10 ]
177 num_parse_test: RuntimeError # Issue 15316 212 num_parse_test: RuntimeError # Issue 15316
178 num_parse_test/01: RuntimeError # Issue 15316 213 num_parse_test/01: RuntimeError # Issue 15316
179 214
180 [ $system == windows && $arch == x64 ] 215 [ $system == windows && $arch == x64 ]
181 stopwatch_test: Skip # Flaky test due to expected performance behaviour. 216 stopwatch_test: Skip # Flaky test due to expected performance behaviour.
182 217
OLDNEW
« no previous file with comments | « pkg/analyzer/test/generated/all_the_rest.dart ('k') | tests/corelib/from_environment_const_type_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698