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 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] | 5 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] |
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 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 [ $compiler == dart2js ] | 52 [ $compiler == dart2js ] |
53 symbol_reserved_word_test/03: RuntimeError # bug 19972, new Symbol('void') shoul
d be allowed. | 53 symbol_reserved_word_test/03: RuntimeError # bug 19972, new Symbol('void') shoul
d be allowed. |
54 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein
g whitespace. | 54 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein
g whitespace. |
55 int_parse_radix_test/02: Fail # No bigints. | 55 int_parse_radix_test/02: Fail # No bigints. |
56 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w
hitespace. | 56 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w
hitespace. |
57 integer_to_radix_string_test: RuntimeError # issue 22045 | 57 integer_to_radix_string_test: RuntimeError # issue 22045 |
58 int_modulo_arith_test/bignum: RuntimeError # No bigints. | 58 int_modulo_arith_test/bignum: RuntimeError # No bigints. |
59 int_modulo_arith_test/modPow: RuntimeError # No bigints. | 59 int_modulo_arith_test/modPow: RuntimeError # No bigints. |
60 | 60 |
| 61 [ $compiler == dart2js && $fast_startup ] |
| 62 apply3_test: Fail # mirrors not supported |
| 63 |
61 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $runtime != dartium && $runtime != drt ] | 64 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $runtime != dartium && $runtime != drt ] |
62 symbol_test/02: MissingCompileTimeError # bug 11669 | 65 symbol_test/02: MissingCompileTimeError # bug 11669 |
63 symbol_test/03: MissingCompileTimeError # bug 11669 | 66 symbol_test/03: MissingCompileTimeError # bug 11669 |
64 | 67 |
65 [ $runtime == ff || $runtime == jsshell ] | 68 [ $runtime == ff || $runtime == jsshell ] |
66 unicode_test: Fail | 69 unicode_test: Fail |
67 # Firefox takes advantage of the ECMAScript number parsing cop-out clause | 70 # Firefox takes advantage of the ECMAScript number parsing cop-out clause |
68 # (presumably added to allow Mozilla's existing behavior) | 71 # (presumably added to allow Mozilla's existing behavior) |
69 # and only looks at the first 20 significant digits. | 72 # and only looks at the first 20 significant digits. |
70 # The Dart VM and the other ECMAScript implementations follow the correct | 73 # The Dart VM and the other ECMAScript implementations follow the correct |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 int_parse_radix_test: Pass, Timeout # --no_intrinsify | 200 int_parse_radix_test: Pass, Timeout # --no_intrinsify |
198 | 201 |
199 [ $compiler == precompiler || $runtime == dart_app ] | 202 [ $compiler == precompiler || $runtime == dart_app ] |
200 data_resource_test: Skip # Resolve URI not supported yet in product mode. | 203 data_resource_test: Skip # Resolve URI not supported yet in product mode. |
201 package_resource_test: Skip # Resolve URI not supported yet in product mode. | 204 package_resource_test: Skip # Resolve URI not supported yet in product mode. |
202 file_resource_test: Skip # Resolve URI not supported yet in product mode. | 205 file_resource_test: Skip # Resolve URI not supported yet in product mode. |
203 http_resource_test: Skip # Resolve URI not supported yet in product mode. | 206 http_resource_test: Skip # Resolve URI not supported yet in product mode. |
204 | 207 |
205 [ $arch == simdbc || $arch == simdbc64 ] | 208 [ $arch == simdbc || $arch == simdbc64 ] |
206 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp
reter | 209 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp
reter |
OLD | NEW |