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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 'redirecting_factory_reflection_test': fail, | 205 'redirecting_factory_reflection_test': fail, |
206 'reg_exp_test': whitelist, | 206 'reg_exp_test': whitelist, |
207 'regress_16640_test': fail, | 207 'regress_16640_test': fail, |
208 'regress_18535_test': fail, | 208 'regress_18535_test': fail, |
209 'regress_22445_test': fail, | 209 'regress_22445_test': fail, |
210 'regress_22666_test': fail, | 210 'regress_22666_test': fail, |
211 'regress_22777_test': flaky, | 211 'regress_22777_test': flaky, |
212 'setter_no_getter_test_01_multi': fail, | 212 'setter_no_getter_test_01_multi': fail, |
213 'stack_overflow_stacktrace_test': fail, | 213 'stack_overflow_stacktrace_test': fail, |
214 'stack_overflow_test': fail, | 214 'stack_overflow_test': fail, |
215 'stacktrace_rethrow_error_test_none_multi': fail, | |
216 'stacktrace_rethrow_error_test_withtraceparameter_multi': fail, | |
217 'stacktrace_test': chrome_fail, | 215 'stacktrace_test': chrome_fail, |
218 'string_interpolate_null_test': fail, | 216 'string_interpolate_null_test': fail, |
219 'switch_label2_test': fail, | 217 'switch_label2_test': fail, |
220 'switch_label_test': fail, | 218 'switch_label_test': fail, |
221 'switch_try_catch_test': fail, | 219 'switch_try_catch_test': fail, |
222 'throwing_lazy_variable_test': fail, | 220 'throwing_lazy_variable_test': fail, |
223 'truncdiv_test': fail, // did not throw | 221 'truncdiv_test': fail, // did not throw |
224 'type_variable_nested_test': fail, | 222 'type_variable_nested_test': fail, |
225 | 223 |
226 'bit_operations_test_01_multi': fail, | 224 'bit_operations_test_01_multi': fail, |
(...skipping 30 matching lines...) Expand all Loading... |
257 'big_integer_parsed_mul_div_vm_test': fail, | 255 'big_integer_parsed_mul_div_vm_test': fail, |
258 'bit_twiddling_bigint_test': fail, | 256 'bit_twiddling_bigint_test': fail, |
259 'collection_length_test': skip_timeout, | 257 'collection_length_test': skip_timeout, |
260 'compare_to2_test': fail, | 258 'compare_to2_test': fail, |
261 'const_list_literal_test': fail, | 259 'const_list_literal_test': fail, |
262 'const_list_remove_range_test': fail, | 260 'const_list_remove_range_test': fail, |
263 'const_list_set_range_test': fail, | 261 'const_list_set_range_test': fail, |
264 'data_uri_test': fail, | 262 'data_uri_test': fail, |
265 'double_parse_test_01_multi': fail, | 263 'double_parse_test_01_multi': fail, |
266 'double_parse_test_02_multi': firefox_fail, | 264 'double_parse_test_02_multi': firefox_fail, |
267 'error_stack_trace1_test': fail, | |
268 'error_stack_trace2_test': fail, | |
269 'for_in_test': is.firefox('<=50') ? fail : pass, | 265 'for_in_test': is.firefox('<=50') ? fail : pass, |
270 'growable_list_test': fail, | 266 'growable_list_test': fail, |
271 'hash_map2_test': skip_timeout, | 267 'hash_map2_test': skip_timeout, |
272 'hash_set_test_01_multi': fail, | 268 'hash_set_test_01_multi': fail, |
273 'hidden_library2_test_01_multi': fail, | 269 'hidden_library2_test_01_multi': fail, |
274 'int_modulo_arith_test_bignum_multi': fail, | 270 'int_modulo_arith_test_bignum_multi': fail, |
275 'int_modulo_arith_test_modPow_multi': fail, | 271 'int_modulo_arith_test_modPow_multi': fail, |
276 'int_modulo_arith_test_none_multi': fail, | 272 'int_modulo_arith_test_none_multi': fail, |
277 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U
+0085 being whitespace. | 273 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U
+0085 being whitespace. |
278 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint
s. | 274 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint
s. |
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 | 923 |
928 for (let action of unittest_tests) { | 924 for (let action of unittest_tests) { |
929 try { | 925 try { |
930 action(); | 926 action(); |
931 } catch (e) { | 927 } catch (e) { |
932 console.error("Caught error tying to setup test:", e); | 928 console.error("Caught error tying to setup test:", e); |
933 } | 929 } |
934 } | 930 } |
935 }); | 931 }); |
936 }); | 932 }); |
OLD | NEW |