| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 [ $runtime == ff || $runtime == jsshell ] | 97 [ $runtime == ff || $runtime == jsshell ] |
| 98 unicode_test: Fail | 98 unicode_test: Fail |
| 99 # Firefox takes advantage of the ECMAScript number parsing cop-out clause | 99 # Firefox takes advantage of the ECMAScript number parsing cop-out clause |
| 100 # (presumably added to allow Mozilla's existing behavior) | 100 # (presumably added to allow Mozilla's existing behavior) |
| 101 # and only looks at the first 20 significant digits. | 101 # and only looks at the first 20 significant digits. |
| 102 # The Dart VM and the other ECMAScript implementations follow the correct | 102 # The Dart VM and the other ECMAScript implementations follow the correct |
| 103 # IEEE-754 rounding algorithm. | 103 # IEEE-754 rounding algorithm. |
| 104 double_parse_test: Fail, OK | 104 double_parse_test: Fail, OK |
| 105 | 105 |
| 106 [ $runtime == ff || $runtime == jsshell || $runtime == safari || $runtime == saf
arimobilesim ] | 106 [ $runtime == jsshell || $runtime == safari || $runtime == safarimobilesim ] |
| 107 double_round3_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. | 107 double_round3_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. |
| 108 double_round_to_double2_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1
. | 108 double_round_to_double2_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1
. |
| 109 | 109 |
| 110 [ $runtime == ff ] |
| 111 double_round3_test: Pass, Fail, OK # Fails on ff 34, passes on ff 35. Runtime ro
unds 0.49999999999999994 to 1. |
| 112 double_round_to_double2_test: Pass, Fail, OK # Fails on ff 34, passes on ff 35.
Runtime rounds 0.49999999999999994 to 1. |
| 113 |
| 110 [ $runtime == opera ] | 114 [ $runtime == opera ] |
| 111 core_runtime_types_test: Fail | 115 core_runtime_types_test: Fail |
| 112 null_nosuchmethod_test: Fail # Issue: 7413 | 116 null_nosuchmethod_test: Fail # Issue: 7413 |
| 113 unicode_test: Fail # Issue 14694 | 117 unicode_test: Fail # Issue 14694 |
| 114 | 118 |
| 115 [ $compiler == dart2js ] | 119 [ $compiler == dart2js ] |
| 116 growable_list_test: RuntimeError # Fails to detect concurrent modification in ad
dAll. | 120 growable_list_test: RuntimeError # Fails to detect concurrent modification in ad
dAll. |
| 117 error_stack_trace1_test: RuntimeError # Issue 12399 | 121 error_stack_trace1_test: RuntimeError # Issue 12399 |
| 118 hash_set_test/01: RuntimeError # Issue 11551 | 122 hash_set_test/01: RuntimeError # Issue 11551 |
| 119 integer_to_string_test/01: RuntimeError # Issue 1533 | 123 integer_to_string_test/01: RuntimeError # Issue 1533 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 | 227 |
| 224 [ $runtime == vm ] | 228 [ $runtime == vm ] |
| 225 regexp/global_test: Skip # Timeout. Issue 21709 and 21708 | 229 regexp/global_test: Skip # Timeout. Issue 21709 and 21708 |
| 226 | 230 |
| 227 [ $mode == debug ] | 231 [ $mode == debug ] |
| 228 regexp/pcre_test: Pass, Slow # Timeout. Issue 22008 | 232 regexp/pcre_test: Pass, Slow # Timeout. Issue 22008 |
| 229 | 233 |
| 230 [ $mode == debug && $arch == mips ] | 234 [ $mode == debug && $arch == mips ] |
| 231 regexp/pcre_test: Skip # Timeout. Issue 21995 | 235 regexp/pcre_test: Skip # Timeout. Issue 21995 |
| 232 regexp/regress-regexp-construct-result_test: Skip # Timeout. Issue 21995 | 236 regexp/regress-regexp-construct-result_test: Skip # Timeout. Issue 21995 |
| OLD | NEW |