| 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 function(dart_sdk, async_helper, expect, unittest, is, require) { | 6 function(dart_sdk, async_helper, expect, unittest, is, require) { |
| 7 'use strict'; | 7 'use strict'; |
| 8 | 8 |
| 9 async_helper = async_helper.async_helper; | 9 async_helper = async_helper.async_helper; |
| 10 let minitest = expect.minitest; | 10 let minitest = expect.minitest; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 'big_integer_parsed_div_rem_vm_test': fail, | 241 'big_integer_parsed_div_rem_vm_test': fail, |
| 242 'big_integer_parsed_mul_div_vm_test': fail, | 242 'big_integer_parsed_mul_div_vm_test': fail, |
| 243 | 243 |
| 244 'bit_twiddling_bigint_test': fail, | 244 'bit_twiddling_bigint_test': fail, |
| 245 'collection_length_test': skip_timeout, | 245 'collection_length_test': skip_timeout, |
| 246 'compare_to2_test': fail, | 246 'compare_to2_test': fail, |
| 247 'const_list_literal_test': fail, | 247 'const_list_literal_test': fail, |
| 248 'const_list_remove_range_test': fail, | 248 'const_list_remove_range_test': fail, |
| 249 'const_list_set_range_test': fail, | 249 'const_list_set_range_test': fail, |
| 250 'core_runtime_types_test': fail, | 250 'core_runtime_types_test': fail, |
| 251 'double_parse_test_01_multi': fail, | 251 'date_time10_test': fail, |
| 252 'double_parse_test_02_multi': firefox_fail, | 252 'double_parse_test_02_multi': firefox_fail, |
| 253 'for_in_test': is.firefox('<=50') ? fail : pass, | 253 'for_in_test': is.firefox('<=50') ? fail : pass, |
| 254 'growable_list_test': fail, | 254 'growable_list_test': fail, |
| 255 'hash_map2_test': skip_timeout, | 255 'hash_map2_test': skip_timeout, |
| 256 'hash_set_test_01_multi': fail, | 256 'hash_set_test_01_multi': fail, |
| 257 'int_modulo_arith_test_bignum_multi': fail, | 257 'int_modulo_arith_test_bignum_multi': fail, |
| 258 'int_modulo_arith_test_modPow_multi': fail, | 258 'int_modulo_arith_test_modPow_multi': fail, |
| 259 'int_modulo_arith_test_none_multi': fail, | 259 'int_modulo_arith_test_none_multi': fail, |
| 260 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U
+0085 being whitespace. | 260 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U
+0085 being whitespace. |
| 261 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint
s. | 261 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint
s. |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 | 907 |
| 908 for (let action of unittest_tests) { | 908 for (let action of unittest_tests) { |
| 909 try { | 909 try { |
| 910 action(); | 910 action(); |
| 911 } catch (e) { | 911 } catch (e) { |
| 912 console.error("Caught error tying to setup test:", e); | 912 console.error("Caught error tying to setup test:", e); |
| 913 } | 913 } |
| 914 } | 914 } |
| 915 }); | 915 }); |
| 916 }); | 916 }); |
| OLD | NEW |