| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 'iterable_return_type_test_02_multi': fail, | 254 'iterable_return_type_test_02_multi': fail, |
| 255 'json_map_test': fail, | 255 'json_map_test': fail, |
| 256 'list_fill_range_test': fail, | 256 'list_fill_range_test': fail, |
| 257 'list_replace_range_test': fail, | 257 'list_replace_range_test': fail, |
| 258 'list_set_all_test': fail, | 258 'list_set_all_test': fail, |
| 259 'list_test_01_multi': fail, | 259 'list_test_01_multi': fail, |
| 260 'list_test_none_multi': fail, | 260 'list_test_none_multi': fail, |
| 261 'main_test': fail, | 261 'main_test': fail, |
| 262 'map_keys2_test': fail, | 262 'map_keys2_test': fail, |
| 263 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, | 263 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, |
| 264 'map_test': fail, |
| 264 'nan_infinity_test_01_multi': fail, | 265 'nan_infinity_test_01_multi': fail, |
| 265 'null_nosuchmethod_test': fail, | 266 'null_nosuchmethod_test': fail, |
| 266 'regress_r21715_test': fail, | 267 'regress_r21715_test': fail, |
| 267 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, | 268 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, |
| 268 'string_case_test_01_multi': firefox_fail, | 269 'string_case_test_01_multi': firefox_fail, |
| 269 'string_fromcharcodes_test': skip_timeout, | 270 'string_fromcharcodes_test': skip_timeout, |
| 270 'string_operations_with_null_test': fail, | 271 'string_operations_with_null_test': fail, |
| 271 'string_trimlr_test_01_multi': is.chrome('<=58') ? fail : pass, | 272 'string_trimlr_test_01_multi': is.chrome('<=58') ? fail : pass, |
| 272 'string_trimlr_test_none_multi': is.chrome('<=58') ? fail : pass, | 273 'string_trimlr_test_none_multi': is.chrome('<=58') ? fail : pass, |
| 273 'symbol_operator_test_03_multi': fail, | 274 'symbol_operator_test_03_multi': fail, |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 | 860 |
| 860 for (let action of unittest_tests) { | 861 for (let action of unittest_tests) { |
| 861 try { | 862 try { |
| 862 action(); | 863 action(); |
| 863 } catch (e) { | 864 } catch (e) { |
| 864 console.error("Caught error tying to setup test:", e); | 865 console.error("Caught error tying to setup test:", e); |
| 865 } | 866 } |
| 866 } | 867 } |
| 867 }); | 868 }); |
| 868 }); | 869 }); |
| OLD | NEW |