OLD | NEW |
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 [ $strong ] | 5 [ $strong ] |
6 *: SkipByDesign # tests/corelib_strong has the strong mode versions of these tes
ts. | 6 *: SkipByDesign # tests/corelib_strong has the strong mode versions of these tes
ts. |
7 | 7 |
8 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] | 8 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] |
9 from_environment_const_type_test: Skip | 9 from_environment_const_type_test: Skip |
10 from_environment_const_type_undefined_test: Skip | 10 from_environment_const_type_undefined_test: Skip |
11 int_from_environment2_test: Skip | 11 int_from_environment2_test: Skip |
12 int_from_environment3_test: Skip | 12 int_from_environment3_test: Skip |
13 int_from_environment_test: Skip | 13 int_from_environment_test: Skip |
14 string_from_environment2_test: Skip | 14 string_from_environment2_test: Skip |
15 string_from_environment3_test: Skip | 15 string_from_environment3_test: Skip |
16 string_from_environment_test: Skip | 16 string_from_environment_test: Skip |
17 | 17 |
18 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | |
19 symbol_test/01: Fail, Pass # bug 11669 | |
20 | |
21 # With the exception of 'void', new Symbol() should not accept reserved words. | |
22 symbol_reserved_word_test/05: CompileTimeError # bug 20191 | |
23 symbol_reserved_word_test/06: RuntimeError # bug 11669 | |
24 symbol_reserved_word_test/09: RuntimeError # bug 11669 | |
25 symbol_reserved_word_test/12: RuntimeError # bug 11669 | |
26 | |
27 symbol_test/none: Fail # bug 11669 | |
28 symbol_operator_test/03: Fail # bug 11669 | |
29 string_case_test/01: Fail # Bug 18061 | |
30 | |
31 [ $compiler == none && ($runtime == vm || $runtime == flutter)] | |
32 string_trimlr_test/02: RuntimeError # Issue 29060 | |
33 | |
34 [ $compiler == precompiler || $compiler == app_jit ] | |
35 string_trimlr_test/02: RuntimeError # Issue 29060 | |
36 | |
37 # #void should be a valid symbol. | |
38 [ $compiler == none || $compiler == precompiler || $compiler == app_jit || $comp
iler == dart2js ] | |
39 symbol_reserved_word_test/02: CompileTimeError # bug 20191 | |
40 | |
41 # With the exception of 'void', const Symbol() should not accept reserved | |
42 # words. | |
43 symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 | |
44 symbol_reserved_word_test/07: MissingCompileTimeError # bug 11669, 19972 | |
45 symbol_reserved_word_test/10: MissingCompileTimeError # bug 11669, 19972 | |
46 | |
47 [ $compiler == dart2js ] | 18 [ $compiler == dart2js ] |
48 symbol_reserved_word_test/03: RuntimeError # bug 19972, new Symbol('void') shoul
d be allowed. | |
49 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein
g whitespace. | 19 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein
g whitespace. |
50 int_parse_radix_test/02: Fail # No bigints. | 20 int_parse_radix_test/02: Fail # No bigints. |
51 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w
hitespace. | 21 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w
hitespace. |
52 integer_to_radix_string_test: RuntimeError # issue 22045 | 22 integer_to_radix_string_test: RuntimeError # issue 22045 |
53 int_modulo_arith_test/bignum: RuntimeError # No bigints. | 23 int_modulo_arith_test/bignum: RuntimeError # No bigints. |
54 int_modulo_arith_test/modPow: RuntimeError # No bigints. | 24 int_modulo_arith_test/modPow: RuntimeError # No bigints. |
55 list_unmodifiable_test: Pass, RuntimeError # Issue 28712 | 25 list_unmodifiable_test: Pass, RuntimeError # Issue 28712 |
56 symbol_reserved_word_test/05: Crash # bug 20191 | |
57 | |
58 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ru
ntime != dartium && $runtime != drt ] | |
59 symbol_test/02: MissingCompileTimeError # bug 11669 | |
60 symbol_test/03: MissingCompileTimeError # bug 11669 | |
61 | 26 |
62 [ $runtime == ff || $runtime == jsshell ] | 27 [ $runtime == ff || $runtime == jsshell ] |
63 # Firefox takes advantage of the ECMAScript number parsing cop-out clause | 28 # Firefox takes advantage of the ECMAScript number parsing cop-out clause |
64 # (presumably added to allow Mozilla's existing behavior) | 29 # (presumably added to allow Mozilla's existing behavior) |
65 # and only looks at the first 20 significant digits. | 30 # and only looks at the first 20 significant digits. |
66 # The Dart VM and the other ECMAScript implementations follow the correct | 31 # The Dart VM and the other ECMAScript implementations follow the correct |
67 # IEEE-754 rounding algorithm. | 32 # IEEE-754 rounding algorithm. |
68 double_parse_test/02: Fail, OK | 33 double_parse_test/02: Fail, OK |
69 | 34 |
70 [ $runtime == safari || $runtime == safarimobilesim ] | 35 [ $runtime == safari || $runtime == safarimobilesim ] |
(...skipping 20 matching lines...) Expand all Loading... |
91 string_base_vm_test: RuntimeError, OK # VM specific test. | 56 string_base_vm_test: RuntimeError, OK # VM specific test. |
92 nan_infinity_test/01: Fail # Issue 11551 | 57 nan_infinity_test/01: Fail # Issue 11551 |
93 regexp/pcre_test: Pass, Slow # Issue 21593 | 58 regexp/pcre_test: Pass, Slow # Issue 21593 |
94 regress_r21715_test: RuntimeError # Requires bigint support. | 59 regress_r21715_test: RuntimeError # Requires bigint support. |
95 | 60 |
96 [ $compiler == dart2js && $runtime == none ] | 61 [ $compiler == dart2js && $runtime == none ] |
97 *: Fail, Pass # TODO(ahe): Triage these tests. | 62 *: Fail, Pass # TODO(ahe): Triage these tests. |
98 | 63 |
99 [ $compiler == dart2js && $runtime == chromeOnAndroid ] | 64 [ $compiler == dart2js && $runtime == chromeOnAndroid ] |
100 list_as_map_test: Pass, Slow # TODO(kasperl): Please triage. | 65 list_as_map_test: Pass, Slow # TODO(kasperl): Please triage. |
101 string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. | |
102 | |
103 [ $compiler == dart2js && $runtime == drt ] | |
104 string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. | |
105 | |
106 [ $compiler == dart2js && $runtime == safarimobilesim ] | |
107 string_split_test: RuntimeError # Issue 21431 | |
108 | 66 |
109 [ $compiler == dart2js && $runtime == safarimobilesim ] | 67 [ $compiler == dart2js && $runtime == safarimobilesim ] |
110 list_test/01: Fail # Safari bug: Array(-2) seen as dead code. | 68 list_test/01: Fail # Safari bug: Array(-2) seen as dead code. |
111 string_trimlr_test/01: Fail | |
112 string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. | |
113 | 69 |
114 [ $compiler == dart2js && ($runtime == ff || $runtime == jsshell) ] | 70 [ $compiler == dart2js && ($runtime == ff || $runtime == jsshell) ] |
115 string_case_test/01: Fail, OK # Bug in Firefox. | 71 string_case_test/01: Fail, OK # Bug in Firefox. |
116 | 72 |
117 # Analyzer's implementation of fromEnvironment assumes that undefined | 73 # Analyzer's implementation of fromEnvironment assumes that undefined |
118 # environment variables have an unspecified value (rather than being | 74 # environment variables have an unspecified value (rather than being |
119 # null) because it is expected that the user will supply a value when | 75 # null) because it is expected that the user will supply a value when |
120 # the code is run. This means that it produces slightly different | 76 # the code is run. This means that it produces slightly different |
121 # error messages than the VM and Dart2js. | 77 # error messages than the VM and Dart2js. |
122 [ $compiler == dart2analyzer && $checked ] | 78 [ $compiler == dart2analyzer && $checked ] |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 http_resource_test: Skip # Resolve URI not supported yet in product mode. | 137 http_resource_test: Skip # Resolve URI not supported yet in product mode. |
182 | 138 |
183 [ $arch == simdbc || $arch == simdbc64 ] | 139 [ $arch == simdbc || $arch == simdbc64 ] |
184 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp
reter | 140 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp
reter |
185 | 141 |
186 [ $hot_reload || $hot_reload_rollback ] | 142 [ $hot_reload || $hot_reload_rollback ] |
187 big_integer_parsed_mul_div_vm_test: Pass, Slow # Slow. | 143 big_integer_parsed_mul_div_vm_test: Pass, Slow # Slow. |
188 | 144 |
189 [ $compiler == dart2js && $dart2js_with_kernel ] | 145 [ $compiler == dart2js && $dart2js_with_kernel ] |
190 error_stack_trace1_test: Pass # Issue 27394 | 146 error_stack_trace1_test: Pass # Issue 27394 |
191 symbol_reserved_word_test/03: Pass # Issue 27394 | |
192 map_test: Crash # Issue 27394 | 147 map_test: Crash # Issue 27394 |
193 regexp/pcre_test: RuntimeError # Issue 27394 | 148 regexp/pcre_test: RuntimeError # Issue 27394 |
194 symbol_operator_test/03: RuntimeError # Issue 27394 | |
195 symbol_reserved_word_test/06: RuntimeError # Issue 27394 | |
196 symbol_reserved_word_test/09: RuntimeError # Issue 27394 | |
197 symbol_reserved_word_test/12: RuntimeError # Issue 27394 | |
198 symbol_test/none: RuntimeError # Issue 27394 | |
199 | 149 |
200 [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] | 150 [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] |
201 regress/4562_test/01: Crash # Issue 27394 | 151 regress/4562_test/01: Crash # Issue 27394 |
202 | 152 |
203 [ ($compiler == dartk || $compiler == dartkp) && ($runtime == vm || $runtime ==
dart_precompiled) ] | 153 [ ($compiler == dartk || $compiler == dartkp) && ($runtime == vm || $runtime ==
dart_precompiled) ] |
204 int_from_environment3_test/01: MissingCompileTimeError | 154 int_from_environment3_test/01: MissingCompileTimeError |
205 int_from_environment3_test/02: MissingCompileTimeError | 155 int_from_environment3_test/02: MissingCompileTimeError |
206 int_from_environment3_test/03: MissingCompileTimeError | 156 int_from_environment3_test/03: MissingCompileTimeError |
207 int_from_environment3_test/04: MissingCompileTimeError | 157 int_from_environment3_test/04: MissingCompileTimeError |
208 int_from_environment3_test/05: MissingCompileTimeError | 158 int_from_environment3_test/05: MissingCompileTimeError |
209 string_case_test/01: RuntimeError | 159 string_case_test/01: RuntimeError |
210 string_from_environment3_test/01: MissingCompileTimeError | 160 string_from_environment3_test/01: MissingCompileTimeError |
211 string_from_environment3_test/02: MissingCompileTimeError | 161 string_from_environment3_test/02: MissingCompileTimeError |
212 string_from_environment3_test/03: MissingCompileTimeError | 162 string_from_environment3_test/03: MissingCompileTimeError |
213 string_from_environment3_test/04: MissingCompileTimeError | 163 string_from_environment3_test/04: MissingCompileTimeError |
214 string_from_environment3_test/05: MissingCompileTimeError | 164 string_from_environment3_test/05: MissingCompileTimeError |
215 string_trimlr_test/02: RuntimeError | |
216 symbol_operator_test/03: RuntimeError | |
217 symbol_reserved_word_test/04: MissingCompileTimeError | |
218 symbol_reserved_word_test/06: RuntimeError | |
219 symbol_reserved_word_test/07: MissingCompileTimeError | |
220 symbol_reserved_word_test/09: RuntimeError | |
221 symbol_reserved_word_test/10: MissingCompileTimeError | |
222 symbol_reserved_word_test/12: RuntimeError | |
223 symbol_test/01: MissingCompileTimeError | |
224 symbol_test/02: MissingCompileTimeError | |
225 symbol_test/03: MissingCompileTimeError | |
226 symbol_test/none: RuntimeError | |
227 | 165 |
228 # dartk: checked mode failures | 166 # dartk: checked mode failures |
229 [ $checked && ($compiler == dartk || $compiler == dartkp) ] | 167 [ $checked && ($compiler == dartk || $compiler == dartkp) ] |
230 symbol_test/01: Pass | |
231 symbol_test/02: Pass | |
232 from_environment_const_type_test/02: MissingCompileTimeError | 168 from_environment_const_type_test/02: MissingCompileTimeError |
233 from_environment_const_type_test/03: MissingCompileTimeError | 169 from_environment_const_type_test/03: MissingCompileTimeError |
234 from_environment_const_type_test/04: MissingCompileTimeError | 170 from_environment_const_type_test/04: MissingCompileTimeError |
235 from_environment_const_type_test/06: MissingCompileTimeError | 171 from_environment_const_type_test/06: MissingCompileTimeError |
236 from_environment_const_type_test/07: MissingCompileTimeError | 172 from_environment_const_type_test/07: MissingCompileTimeError |
237 from_environment_const_type_test/08: MissingCompileTimeError | 173 from_environment_const_type_test/08: MissingCompileTimeError |
238 from_environment_const_type_test/09: MissingCompileTimeError | 174 from_environment_const_type_test/09: MissingCompileTimeError |
239 from_environment_const_type_test/11: MissingCompileTimeError | 175 from_environment_const_type_test/11: MissingCompileTimeError |
240 from_environment_const_type_test/12: MissingCompileTimeError | 176 from_environment_const_type_test/12: MissingCompileTimeError |
241 from_environment_const_type_test/13: MissingCompileTimeError | 177 from_environment_const_type_test/13: MissingCompileTimeError |
(...skipping 24 matching lines...) Expand all Loading... |
266 from_environment_const_type_test/04: MissingCompileTimeError # Flutter Issue 911
1 | 202 from_environment_const_type_test/04: MissingCompileTimeError # Flutter Issue 911
1 |
267 from_environment_const_type_test/06: MissingCompileTimeError # Flutter Issue 911
1 | 203 from_environment_const_type_test/06: MissingCompileTimeError # Flutter Issue 911
1 |
268 from_environment_const_type_test/07: MissingCompileTimeError # Flutter Issue 911
1 | 204 from_environment_const_type_test/07: MissingCompileTimeError # Flutter Issue 911
1 |
269 from_environment_const_type_test/08: MissingCompileTimeError # Flutter Issue 911
1 | 205 from_environment_const_type_test/08: MissingCompileTimeError # Flutter Issue 911
1 |
270 from_environment_const_type_test/09: MissingCompileTimeError # Flutter Issue 911
1 | 206 from_environment_const_type_test/09: MissingCompileTimeError # Flutter Issue 911
1 |
271 from_environment_const_type_test/12: MissingCompileTimeError # Flutter Issue 911
1 | 207 from_environment_const_type_test/12: MissingCompileTimeError # Flutter Issue 911
1 |
272 from_environment_const_type_test/11: MissingCompileTimeError # Flutter Issue 911
1 | 208 from_environment_const_type_test/11: MissingCompileTimeError # Flutter Issue 911
1 |
273 from_environment_const_type_test/13: MissingCompileTimeError # Flutter Issue 911
1 | 209 from_environment_const_type_test/13: MissingCompileTimeError # Flutter Issue 911
1 |
274 from_environment_const_type_test/14: MissingCompileTimeError # Flutter Issue 911
1 | 210 from_environment_const_type_test/14: MissingCompileTimeError # Flutter Issue 911
1 |
275 from_environment_const_type_test/16: MissingCompileTimeError # Flutter Issue 911
1 | 211 from_environment_const_type_test/16: MissingCompileTimeError # Flutter Issue 911
1 |
276 string_trimlr_test/02: RuntimeError # Flutter Issue 9111 | |
277 main_test: RuntimeError # Flutter Issue 9111 | 212 main_test: RuntimeError # Flutter Issue 9111 |
OLD | NEW |