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 == 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 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 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 iterable_return_type_test/02: RuntimeError # Issue 13646 | 85 iterable_return_type_test/02: RuntimeError # Issue 13646 |
86 | 86 |
87 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co
ntentShellOnAndroid) ] | 87 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co
ntentShellOnAndroid) ] |
88 main_test: Fail # Dartium needs to check for both main() and main(args). | 88 main_test: Fail # Dartium needs to check for both main() and main(args). |
89 | 89 |
90 [ $compiler == none && $runtime == ContentShellOnAndroid ] | 90 [ $compiler == none && $runtime == ContentShellOnAndroid ] |
91 core_runtime_types_test: Pass, Fail # Issue 20525 | 91 core_runtime_types_test: Pass, Fail # Issue 20525 |
92 | 92 |
93 [ $runtime == ff || $runtime == jsshell ] | 93 [ $runtime == ff || $runtime == jsshell ] |
94 unicode_test: Fail | 94 unicode_test: Fail |
| 95 # Firefox takes advantage of the ECMAScript number parsing cop-out clause |
| 96 # (presumably added to allow Mozilla's existing behavior) |
| 97 # and only looks at the first 20 significant digits. |
| 98 # The Dart VM and the other ECMAScript implementations follow the correct |
| 99 # IEEE-754 rounding algorithm. |
| 100 double_parse_test: Fail, OK |
95 | 101 |
96 [ $runtime == ff || $runtime == jsshell || $runtime == safari || $runtime == saf
arimobilesim ] | 102 [ $runtime == ff || $runtime == jsshell || $runtime == safari || $runtime == saf
arimobilesim ] |
97 double_round3_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. | 103 double_round3_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. |
98 double_round_to_double2_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1
. | 104 double_round_to_double2_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1
. |
99 | 105 |
100 [ $runtime == opera ] | 106 [ $runtime == opera ] |
101 core_runtime_types_test: Fail | 107 core_runtime_types_test: Fail |
102 null_nosuchmethod_test: Fail # Issue: 7413 | 108 null_nosuchmethod_test: Fail # Issue: 7413 |
103 unicode_test: Fail # Issue 14694 | 109 unicode_test: Fail # Issue 14694 |
104 | 110 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 num_parse_test: RuntimeError # Issue 15316 | 224 num_parse_test: RuntimeError # Issue 15316 |
219 num_parse_test/01: RuntimeError # Issue 15316 | 225 num_parse_test/01: RuntimeError # Issue 15316 |
220 | 226 |
221 [ $system == windows && $arch == x64 ] | 227 [ $system == windows && $arch == x64 ] |
222 stopwatch_test: Skip # Flaky test due to expected performance behaviour. | 228 stopwatch_test: Skip # Flaky test due to expected performance behaviour. |
223 | 229 |
224 [ $runtime != d8 ] | 230 [ $runtime != d8 ] |
225 # JSCRE does not pass all of the tests ported for irregexp. | 231 # JSCRE does not pass all of the tests ported for irregexp. |
226 # Ignore all of the tests until irregexp is fully ported. | 232 # Ignore all of the tests until irregexp is fully ported. |
227 regexp/*: Skip | 233 regexp/*: Skip |
OLD | NEW |