| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 'integer_to_radix_string_test': fail, | 320 'integer_to_radix_string_test': fail, |
| 321 'integer_to_string_test_01_multi': fail, | 321 'integer_to_string_test_01_multi': fail, |
| 322 'iterable_empty_test': whitelist, | 322 'iterable_empty_test': whitelist, |
| 323 'iterable_join_test': whitelist, | 323 'iterable_join_test': whitelist, |
| 324 'iterable_return_type_test_02_multi': fail, | 324 'iterable_return_type_test_02_multi': fail, |
| 325 'json_map_test': fail, | 325 'json_map_test': fail, |
| 326 'list_fill_range_test': fail, | 326 'list_fill_range_test': fail, |
| 327 'list_insert_all_test': whitelist, | 327 'list_insert_all_test': whitelist, |
| 328 'list_replace_range_test': fail, | 328 'list_replace_range_test': fail, |
| 329 'list_set_all_test': fail, | 329 'list_set_all_test': fail, |
| 330 'list_test_01_multi': fail, |
| 331 'list_test_none_multi': fail, |
| 330 'list_to_string2_test': fail, | 332 'list_to_string2_test': fail, |
| 331 'main_test': fail, | 333 'main_test': fail, |
| 332 'map_keys2_test': fail, | 334 'map_keys2_test': fail, |
| 333 'map_to_string_test': fail, | 335 'map_to_string_test': fail, |
| 334 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, | 336 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, |
| 335 'nan_infinity_test_01_multi': fail, | 337 'nan_infinity_test_01_multi': fail, |
| 336 'null_nosuchmethod_test': fail, | 338 'null_nosuchmethod_test': fail, |
| 337 'null_test': fail, | 339 'null_test': fail, |
| 338 'num_sign_test': fail, | 340 'num_sign_test': fail, |
| 339 'reg_exp_all_matches_test': whitelist, | 341 'reg_exp_all_matches_test': whitelist, |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 | 918 |
| 917 for (let action of unittest_tests) { | 919 for (let action of unittest_tests) { |
| 918 try { | 920 try { |
| 919 action(); | 921 action(); |
| 920 } catch (e) { | 922 } catch (e) { |
| 921 console.error("Caught error tying to setup test:", e); | 923 console.error("Caught error tying to setup test:", e); |
| 922 } | 924 } |
| 923 } | 925 } |
| 924 }); | 926 }); |
| 925 }); | 927 }); |
| OLD | NEW |