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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 'list_insert_all_test': whitelist, | 265 'list_insert_all_test': whitelist, |
266 'list_replace_range_test': fail, | 266 'list_replace_range_test': fail, |
267 'list_set_all_test': fail, | 267 'list_set_all_test': fail, |
268 'list_test_01_multi': fail, | 268 'list_test_01_multi': fail, |
269 'list_test_none_multi': fail, | 269 'list_test_none_multi': fail, |
270 'main_test': fail, | 270 'main_test': fail, |
271 'map_keys2_test': fail, | 271 'map_keys2_test': fail, |
272 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, | 272 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, |
273 'nan_infinity_test_01_multi': fail, | 273 'nan_infinity_test_01_multi': fail, |
274 'null_nosuchmethod_test': fail, | 274 'null_nosuchmethod_test': fail, |
275 'null_test': fail, | |
276 'reg_exp_all_matches_test': whitelist, | 275 'reg_exp_all_matches_test': whitelist, |
277 'reg_exp_start_end_test': whitelist, | 276 'reg_exp_start_end_test': whitelist, |
278 'regress_r21715_test': fail, | 277 'regress_r21715_test': fail, |
279 'sort_test': whitelist, | 278 'sort_test': whitelist, |
280 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, | 279 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, |
281 'string_case_test_01_multi': firefox_fail, | 280 'string_case_test_01_multi': firefox_fail, |
282 'string_fromcharcodes_test': skip_timeout, | 281 'string_fromcharcodes_test': skip_timeout, |
283 'string_operations_with_null_test': fail, | 282 'string_operations_with_null_test': fail, |
284 'string_split_test': whitelist, | 283 'string_split_test': whitelist, |
285 'string_trimlr_test_01_multi': is.chrome('<=58') ? fail : pass, | 284 'string_trimlr_test_01_multi': is.chrome('<=58') ? fail : pass, |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 | 908 |
910 for (let action of unittest_tests) { | 909 for (let action of unittest_tests) { |
911 try { | 910 try { |
912 action(); | 911 action(); |
913 } catch (e) { | 912 } catch (e) { |
914 console.error("Caught error tying to setup test:", e); | 913 console.error("Caught error tying to setup test:", e); |
915 } | 914 } |
916 } | 915 } |
917 }); | 916 }); |
918 }); | 917 }); |
OLD | NEW |