| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 'iterable_empty_test': whitelist, | 260 'iterable_empty_test': whitelist, |
| 261 'iterable_join_test': whitelist, | 261 'iterable_join_test': whitelist, |
| 262 'iterable_return_type_test_02_multi': fail, | 262 'iterable_return_type_test_02_multi': fail, |
| 263 'json_map_test': fail, | 263 'json_map_test': fail, |
| 264 'list_fill_range_test': fail, | 264 'list_fill_range_test': fail, |
| 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 'list_to_string2_test': fail, | |
| 271 'main_test': fail, | 270 'main_test': fail, |
| 272 'map_keys2_test': fail, | 271 'map_keys2_test': fail, |
| 273 'map_to_string_test': fail, | |
| 274 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, | 272 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, |
| 275 'nan_infinity_test_01_multi': fail, | 273 'nan_infinity_test_01_multi': fail, |
| 276 'null_nosuchmethod_test': fail, | 274 'null_nosuchmethod_test': fail, |
| 277 'null_test': fail, | 275 'null_test': fail, |
| 278 'reg_exp_all_matches_test': whitelist, | 276 'reg_exp_all_matches_test': whitelist, |
| 279 'reg_exp_start_end_test': whitelist, | 277 'reg_exp_start_end_test': whitelist, |
| 280 'regress_r21715_test': fail, | 278 'regress_r21715_test': fail, |
| 281 'sort_test': whitelist, | 279 'sort_test': whitelist, |
| 282 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, | 280 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, |
| 283 'string_case_test_01_multi': firefox_fail, | 281 'string_case_test_01_multi': firefox_fail, |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 | 909 |
| 912 for (let action of unittest_tests) { | 910 for (let action of unittest_tests) { |
| 913 try { | 911 try { |
| 914 action(); | 912 action(); |
| 915 } catch (e) { | 913 } catch (e) { |
| 916 console.error("Caught error tying to setup test:", e); | 914 console.error("Caught error tying to setup test:", e); |
| 917 } | 915 } |
| 918 } | 916 } |
| 919 }); | 917 }); |
| 920 }); | 918 }); |
| OLD | NEW |