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

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

Issue 1507943002: Add ./tools/test.py -c precompiler -r dart_precompiled. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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-runtime.status ('k') | tests/html/html.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) 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 == none && ($runtime == drt || $runtime == dartium || $runtime == Co ntentShellOnAndroid) ] 5 [ ($compiler == none || $compiler == precompiler) && ($runtime == drt || $runtim e == dartium || $runtime == ContentShellOnAndroid) ]
6 bool_from_environment2_test: Skip 6 bool_from_environment2_test: Skip
7 bool_from_environment_test: Skip 7 bool_from_environment_test: Skip
8 from_environment_const_type_test: Skip 8 from_environment_const_type_test: Skip
9 from_environment_const_type_undefined_test: Skip 9 from_environment_const_type_undefined_test: Skip
10 int_from_environment2_test: Skip 10 int_from_environment2_test: Skip
11 int_from_environment3_test: Skip 11 int_from_environment3_test: Skip
12 int_from_environment_test: Skip 12 int_from_environment_test: Skip
13 string_from_environment2_test: Skip 13 string_from_environment2_test: Skip
14 string_from_environment3_test: Skip 14 string_from_environment3_test: Skip
15 string_from_environment_test: Skip 15 string_from_environment_test: Skip
16 16
17 [ $compiler == none ] 17 [ ($compiler == none || $compiler == precompiler) ]
18 unicode_test: Fail # Bug 6706 18 unicode_test: Fail # Bug 6706
19 compare_to2_test: Fail # Bug 4018 19 compare_to2_test: Fail # Bug 4018
20 20
21 symbol_test/01: Fail, Pass # bug 11669 21 symbol_test/01: Fail, Pass # bug 11669
22 22
23 # #void should be a valid symbol. 23 # #void should be a valid symbol.
24 [ $compiler == none || $compiler == dart2js ] 24 [ ($compiler == none || $compiler == precompiler) || $compiler == dart2js ]
25 symbol_reserved_word_test/02: CompileTimeError # bug 20191 25 symbol_reserved_word_test/02: CompileTimeError # bug 20191
26 symbol_reserved_word_test/05: CompileTimeError # bug 20191 26 symbol_reserved_word_test/05: CompileTimeError # bug 20191
27 27
28 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co ntentShellOnAndroid) ] 28 [ ($compiler == none || $compiler == precompiler) && ($runtime == drt || $runtim e == dartium || $runtime == ContentShellOnAndroid) ]
29 symbol_reserved_word_test/02: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors 29 symbol_reserved_word_test/02: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors
30 symbol_reserved_word_test/05: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors 30 symbol_reserved_word_test/05: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors
31 31
32 # new Symbol('void') should be allowed. 32 # new Symbol('void') should be allowed.
33 [ $compiler == dart2js ] 33 [ $compiler == dart2js ]
34 symbol_reserved_word_test/03: RuntimeError # bug 19972 34 symbol_reserved_word_test/03: RuntimeError # bug 19972
35 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein g whitespace. 35 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein g whitespace.
36 int_parse_radix_test/02: Fail # No bigints. 36 int_parse_radix_test/02: Fail # No bigints.
37 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w hitespace. 37 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w hitespace.
38 integer_to_radix_string_test: RuntimeError # issue 22045 38 integer_to_radix_string_test: RuntimeError # issue 22045
39 int_modulo_arith_test/bignum: RuntimeError # No bigints. 39 int_modulo_arith_test/bignum: RuntimeError # No bigints.
40 int_modulo_arith_test/modPow: RuntimeError # No bigints. 40 int_modulo_arith_test/modPow: RuntimeError # No bigints.
41 41
42 42
43 # With the exception of 'void', const Symbol() should not accept reserved 43 # With the exception of 'void', const Symbol() should not accept reserved
44 # words. 44 # words.
45 [ $compiler == none || $compiler == dart2js ] 45 [ ($compiler == none || $compiler == precompiler) || $compiler == dart2js ]
46 symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 46 symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972
47 symbol_reserved_word_test/07: MissingCompileTimeError # bug 11669, 19972 47 symbol_reserved_word_test/07: MissingCompileTimeError # bug 11669, 19972
48 symbol_reserved_word_test/10: MissingCompileTimeError # bug 11669, 19972 48 symbol_reserved_word_test/10: MissingCompileTimeError # bug 11669, 19972
49 49
50 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co ntentShellOnAndroid) ] 50 [ ($compiler == none || $compiler == precompiler) && ($runtime == drt || $runtim e == dartium || $runtime == ContentShellOnAndroid) ]
51 symbol_reserved_word_test/04: Fail # bug 11669, 19972 / dartium/drt cannot detec t CompileTimeErrors 51 symbol_reserved_word_test/04: Fail # bug 11669, 19972 / dartium/drt cannot detec t CompileTimeErrors
52 symbol_reserved_word_test/07: Fail # bug 11669, 19972 / dartium/drt cannot detec t CompileTimeErrors 52 symbol_reserved_word_test/07: Fail # bug 11669, 19972 / dartium/drt cannot detec t CompileTimeErrors
53 symbol_reserved_word_test/10: Fail # bug 11669, 19972 / dartium/drt cannot detec t CompileTimeErrors 53 symbol_reserved_word_test/10: Fail # bug 11669, 19972 / dartium/drt cannot detec t CompileTimeErrors
54 54
55 # With the exception of 'void', new Symbol() should not accept reserved words. 55 # With the exception of 'void', new Symbol() should not accept reserved words.
56 [ $compiler == none ] 56 [ ($compiler == none || $compiler == precompiler) ]
57 symbol_reserved_word_test/06: RuntimeError # bug 11669 57 symbol_reserved_word_test/06: RuntimeError # bug 11669
58 symbol_reserved_word_test/09: RuntimeError # bug 11669 58 symbol_reserved_word_test/09: RuntimeError # bug 11669
59 symbol_reserved_word_test/12: RuntimeError # bug 11669 59 symbol_reserved_word_test/12: RuntimeError # bug 11669
60 60
61 [ $compiler == none && $runtime != dartium && $runtime != drt && $runtime != Con tentShellOnAndroid ] 61 [ ($compiler == none || $compiler == precompiler) && $runtime != dartium && $run time != drt && $runtime != ContentShellOnAndroid ]
62 symbol_test/02: MissingCompileTimeError # bug 11669 62 symbol_test/02: MissingCompileTimeError # bug 11669
63 symbol_test/03: MissingCompileTimeError # bug 11669 63 symbol_test/03: MissingCompileTimeError # bug 11669
64 64
65 [ $compiler == none ] 65 [ ($compiler == none || $compiler == precompiler) ]
66 symbol_test/none: Fail # bug 11669 66 symbol_test/none: Fail # bug 11669
67 symbol_operator_test/03: Fail # bug 11669 67 symbol_operator_test/03: Fail # bug 11669
68 string_case_test/01: Fail # Bug 18061 68 string_case_test/01: Fail # Bug 18061
69 69
70 iterable_return_type_test/01: RuntimeError # Issue 13646 70 iterable_return_type_test/01: RuntimeError # Issue 13646
71 iterable_return_type_test/02: RuntimeError # Issue 13646 71 iterable_return_type_test/02: RuntimeError # Issue 13646
72 72
73 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co ntentShellOnAndroid) ] 73 [ ($compiler == none || $compiler == precompiler) && ($runtime == drt || $runtim e == dartium || $runtime == ContentShellOnAndroid) ]
74 main_test: Fail # Dartium needs to check for both main() and main(args). 74 main_test: Fail # Dartium needs to check for both main() and main(args).
75 75
76 [ $compiler == none && $runtime == ContentShellOnAndroid ] 76 [ ($compiler == none || $compiler == precompiler) && $runtime == ContentShellOnA ndroid ]
77 core_runtime_types_test: Pass, Fail # Issue 20525 77 core_runtime_types_test: Pass, Fail # Issue 20525
78 78
79 [ $runtime == ff || $runtime == jsshell ] 79 [ $runtime == ff || $runtime == jsshell ]
80 unicode_test: Fail 80 unicode_test: Fail
81 # Firefox takes advantage of the ECMAScript number parsing cop-out clause 81 # Firefox takes advantage of the ECMAScript number parsing cop-out clause
82 # (presumably added to allow Mozilla's existing behavior) 82 # (presumably added to allow Mozilla's existing behavior)
83 # and only looks at the first 20 significant digits. 83 # and only looks at the first 20 significant digits.
84 # The Dart VM and the other ECMAScript implementations follow the correct 84 # The Dart VM and the other ECMAScript implementations follow the correct
85 # IEEE-754 rounding algorithm. 85 # IEEE-754 rounding algorithm.
86 double_parse_test/02: Fail, OK 86 double_parse_test/02: Fail, OK
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 string_test: StaticWarning, OK # Test generates error on purpose. 163 string_test: StaticWarning, OK # Test generates error on purpose.
164 duration2_test: StaticWarning, OK # Test generates error on purpose. 164 duration2_test: StaticWarning, OK # Test generates error on purpose.
165 165
166 [ $system == windows && $arch == x64 ] 166 [ $system == windows && $arch == x64 ]
167 stopwatch_test: Skip # Flaky test due to expected performance behaviour. 167 stopwatch_test: Skip # Flaky test due to expected performance behaviour.
168 168
169 [ $runtime != d8 && $runtime != vm ] 169 [ $runtime != d8 && $runtime != vm ]
170 # The regexp tests are not verified to work on non d8/vm platforms yet. 170 # The regexp tests are not verified to work on non d8/vm platforms yet.
171 regexp/*: Skip 171 regexp/*: Skip
172 172
173 [ $runtime == vm ] 173 [ ($runtime == vm || $runtime == dart_precompiled) ]
174 regexp/global_test: Skip # Timeout. Issue 21709 and 21708 174 regexp/global_test: Skip # Timeout. Issue 21709 and 21708
175 175
176 [ $runtime != vm && $compiler != dart2analyzer] 176 [ $runtime != vm && $compiler != dart2analyzer]
177 package_resource_test: RuntimeError # Issue 23825 (not implemented yet). 177 package_resource_test: RuntimeError # Issue 23825 (not implemented yet).
178 data_resource_test: RuntimeError # Issue 23825 (not implemented yet). 178 data_resource_test: RuntimeError # Issue 23825 (not implemented yet).
179 file_resource_test: Skip, OK # VM specific test, uses dart:io. 179 file_resource_test: Skip, OK # VM specific test, uses dart:io.
180 http_resource_test: Skip, OK # VM specific test, uses dart:io. 180 http_resource_test: Skip, OK # VM specific test, uses dart:io.
181 181
182 [ $mode == debug ] 182 [ $mode == debug ]
183 regexp/pcre_test: Pass, Slow # Timeout. Issue 22008 183 regexp/pcre_test: Pass, Slow # Timeout. Issue 22008
184 184
185 [ $runtime == vm && $arch == simarmv5te ] 185 [ ($runtime == vm || $runtime == dart_precompiled) && $arch == simarmv5te ]
186 int_parse_radix_test/*: Pass, Slow 186 int_parse_radix_test/*: Pass, Slow
187 big_integer_parsed_mul_div_vm_test: Pass, Slow 187 big_integer_parsed_mul_div_vm_test: Pass, Slow
188 188
189 [ $compiler == dart2js && $cps_ir ] 189 [ $compiler == dart2js && $cps_ir ]
190 data_resource_test: Crash # (await for(var byteSlice in resource.openRead()){str eamBytes.addAll(byteSlice);}): await for 190 data_resource_test: Crash # (await for(var byteSlice in resource.openRead()){str eamBytes.addAll(byteSlice);}): await for
191 error_stack_trace1_test: Pass # H.unwrapException(...).get$stackTrace is not a f unction 191 error_stack_trace1_test: Pass # H.unwrapException(...).get$stackTrace is not a f unction
192 growable_list_test: RuntimeError # Typed lists 192 growable_list_test: RuntimeError # Typed lists
193 iterable_empty_test: RuntimeError # Please triage this failure. 193 iterable_empty_test: RuntimeError # Please triage this failure.
194 iterable_return_type_test/none: RuntimeError # Please triage this failure. 194 iterable_return_type_test/none: RuntimeError # Please triage this failure.
195 iterable_to_list_test: RuntimeError # Please triage this failure. 195 iterable_to_list_test: RuntimeError # Please triage this failure.
196 iterable_to_set_test: RuntimeError # Please triage this failure. 196 iterable_to_set_test: RuntimeError # Please triage this failure.
197 list_filled_type_argument_test: RuntimeError # Please triage this failure. 197 list_filled_type_argument_test: RuntimeError # Please triage this failure.
198 list_unmodifiable_test: RuntimeError # Please triage this failure. 198 list_unmodifiable_test: RuntimeError # Please triage this failure.
199 map_values2_test: RuntimeError # Please triage this failure. 199 map_values2_test: RuntimeError # Please triage this failure.
200 map_values3_test: RuntimeError # Please triage this failure. 200 map_values3_test: RuntimeError # Please triage this failure.
201 map_values4_test: RuntimeError # Please triage this failure. 201 map_values4_test: RuntimeError # Please triage this failure.
202 package_resource_test: Crash # (await for(var byteSlice in resource.openRead()){ streamBytes.addAll(byteSlice);}): await for 202 package_resource_test: Crash # (await for(var byteSlice in resource.openRead()){ streamBytes.addAll(byteSlice);}): await for
203 regexp/pcre_test: Crash # Stack Overflow in LoopHierarchy. 203 regexp/pcre_test: Crash # Stack Overflow in LoopHierarchy.
204 symbol_operator_test/03: RuntimeError # Issue 24878 204 symbol_operator_test/03: RuntimeError # Issue 24878
205 symbol_reserved_word_test/03: Pass # Please triage this failure. 205 symbol_reserved_word_test/03: Pass # Please triage this failure.
206 symbol_reserved_word_test/06: RuntimeError # Please triage this failure. 206 symbol_reserved_word_test/06: RuntimeError # Please triage this failure.
207 symbol_reserved_word_test/09: RuntimeError # Please triage this failure. 207 symbol_reserved_word_test/09: RuntimeError # Please triage this failure.
208 symbol_reserved_word_test/12: RuntimeError # Please triage this failure. 208 symbol_reserved_word_test/12: RuntimeError # Please triage this failure.
209 symbol_test/none: RuntimeError # Please triage this failure. 209 symbol_test/none: RuntimeError # Please triage this failure.
210 210
211 [ $compiler == dart2js && $cps_ir && $host_checked ] 211 [ $compiler == dart2js && $cps_ir && $host_checked ]
212 regexp/pcre_test: Crash # Stack Overflow 212 regexp/pcre_test: Crash # Stack Overflow
213 213
214 [ $noopt ] 214 [ ($noopt || $compiler == precompiler) ]
215 apply3_test: CompileTimeError # Imports dart:mirrors 215 apply3_test: CompileTimeError # Imports dart:mirrors
216 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp reter 216 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp reter
217 big_integer_huge_mul_vm_test: Pass, Timeout # --no_intrinsify 217 big_integer_huge_mul_vm_test: Pass, Timeout # --no_intrinsify
218 big_integer_parsed_mul_div_vm_test: Pass, Timeout # --no_intrinsify 218 big_integer_parsed_mul_div_vm_test: Pass, Timeout # --no_intrinsify
219 int_parse_radix_test: Pass, Timeout # --no_intrinsify 219 int_parse_radix_test: Pass, Timeout # --no_intrinsify
OLDNEW
« no previous file with comments | « tests/co19/co19-runtime.status ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698