| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require', | 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require', |
| 6 'test_status'], | 6 'test_status'], |
| 7 function(dart_sdk, async_helper, expect, unittest, is, require, | 7 function(dart_sdk, async_helper, expect, unittest, is, require, |
| 8 test_status) { | 8 test_status) { |
| 9 'use strict'; | 9 'use strict'; |
| 10 | 10 |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 'big_integer_arith_vm_test_mul_multi': fail, | 223 'big_integer_arith_vm_test_mul_multi': fail, |
| 224 'big_integer_arith_vm_test_negate_multi': fail, | 224 'big_integer_arith_vm_test_negate_multi': fail, |
| 225 'big_integer_arith_vm_test_none_multi': fail, | 225 'big_integer_arith_vm_test_none_multi': fail, |
| 226 'big_integer_arith_vm_test_overflow_multi': fail, | 226 'big_integer_arith_vm_test_overflow_multi': fail, |
| 227 'big_integer_arith_vm_test_shift_multi': fail, | 227 'big_integer_arith_vm_test_shift_multi': fail, |
| 228 'big_integer_arith_vm_test_sub_multi': fail, | 228 'big_integer_arith_vm_test_sub_multi': fail, |
| 229 'big_integer_arith_vm_test_trunDiv_multi': fail, | 229 'big_integer_arith_vm_test_trunDiv_multi': fail, |
| 230 'big_integer_parsed_arith_vm_test': fail, | 230 'big_integer_parsed_arith_vm_test': fail, |
| 231 'big_integer_parsed_div_rem_vm_test': fail, | 231 'big_integer_parsed_div_rem_vm_test': fail, |
| 232 'big_integer_parsed_mul_div_vm_test': fail, | 232 'big_integer_parsed_mul_div_vm_test': fail, |
| 233 | |
| 234 'bit_twiddling_bigint_test': fail, | 233 'bit_twiddling_bigint_test': fail, |
| 235 'collection_length_test': skip_timeout, | 234 'collection_length_test': skip_timeout, |
| 236 'compare_to2_test': fail, | 235 'compare_to2_test': fail, |
| 237 'const_list_literal_test': fail, | 236 'const_list_literal_test': fail, |
| 238 'const_list_remove_range_test': fail, | 237 'const_list_remove_range_test': fail, |
| 239 'const_list_set_range_test': fail, | 238 'const_list_set_range_test': fail, |
| 240 'core_runtime_types_test': fail, | 239 'core_runtime_types_test': fail, |
| 241 'date_time10_test': fail, | 240 'date_time10_test': fail, |
| 242 'double_parse_test_02_multi': firefox_fail, | 241 'double_parse_test_02_multi': firefox_fail, |
| 242 'error_stack_trace_test_nullThrown_multi': fail, |
| 243 'list_unmodifiable_test': fail, // DDC is throwing a strong mode error, so
it may be a test bug |
| 243 'for_in_test': is.firefox('<=50') ? fail : pass, | 244 'for_in_test': is.firefox('<=50') ? fail : pass, |
| 244 'growable_list_test': fail, | 245 'growable_list_test': fail, |
| 245 'hash_map2_test': skip_timeout, | 246 'hash_map2_test': skip_timeout, |
| 246 'hash_set_test_01_multi': fail, | 247 'hash_set_test_01_multi': fail, |
| 247 'int_modulo_arith_test_bignum_multi': fail, | 248 'int_modulo_arith_test_bignum_multi': fail, |
| 248 'int_modulo_arith_test_modPow_multi': fail, | 249 'int_modulo_arith_test_modPow_multi': fail, |
| 249 'int_modulo_arith_test_none_multi': fail, | 250 'int_modulo_arith_test_none_multi': fail, |
| 250 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U
+0085 being whitespace. | 251 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U
+0085 being whitespace. |
| 251 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint
s. | 252 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint
s. |
| 252 'int_parse_radix_test_none_multi': ['slow'], | 253 'int_parse_radix_test_none_multi': ['slow'], |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 | 863 |
| 863 for (let action of unittest_tests) { | 864 for (let action of unittest_tests) { |
| 864 try { | 865 try { |
| 865 action(); | 866 action(); |
| 866 } catch (e) { | 867 } catch (e) { |
| 867 console.error("Caught error tying to setup test:", e); | 868 console.error("Caught error tying to setup test:", e); |
| 868 } | 869 } |
| 869 } | 870 } |
| 870 }); | 871 }); |
| 871 }); | 872 }); |
| OLD | NEW |