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