| 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 'reg_exp_start_end_test': whitelist, | 281 'reg_exp_start_end_test': whitelist, |
| 282 'regress_r21715_test': fail, | 282 'regress_r21715_test': fail, |
| 283 'sort_test': whitelist, | 283 'sort_test': whitelist, |
| 284 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, | 284 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass, |
| 285 'string_case_test_01_multi': firefox_fail, | 285 'string_case_test_01_multi': firefox_fail, |
| 286 'string_fromcharcodes_test': skip_timeout, | 286 'string_fromcharcodes_test': skip_timeout, |
| 287 'string_operations_with_null_test': fail, | 287 'string_operations_with_null_test': fail, |
| 288 'string_split_test': whitelist, | 288 'string_split_test': whitelist, |
| 289 'string_trimlr_test_01_multi': is.chrome('<=58') ? fail : pass, | 289 'string_trimlr_test_01_multi': is.chrome('<=58') ? fail : pass, |
| 290 'string_trimlr_test_none_multi': is.chrome('<=58') ? fail : pass, | 290 'string_trimlr_test_none_multi': is.chrome('<=58') ? fail : pass, |
| 291 'symbol_operator_test_03_multi': fail, |
| 292 'symbol_operator_test_none_multi': fail, |
| 291 'symbol_reserved_word_test_06_multi': fail, | 293 'symbol_reserved_word_test_06_multi': fail, |
| 292 'symbol_reserved_word_test_09_multi': fail, | 294 'symbol_reserved_word_test_09_multi': fail, |
| 293 'symbol_reserved_word_test_12_multi': fail, | 295 'symbol_reserved_word_test_12_multi': fail, |
| 296 'symbol_test_none_multi': fail, |
| 294 'unicode_test': firefox_fail, | 297 'unicode_test': firefox_fail, |
| 295 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, | 298 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, |
| 296 // TODO(rnystrom): Times out because it tests a huge number of | 299 // TODO(rnystrom): Times out because it tests a huge number of |
| 297 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). | 300 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). |
| 298 'uri_parse_test': skip_timeout, | 301 'uri_parse_test': skip_timeout, |
| 299 'uri_query_test': fail, | 302 'uri_query_test': fail, |
| 300 // this is timing out on Chrome Canary only | 303 // this is timing out on Chrome Canary only |
| 301 // pinning this skip in case it's a transient canary issue | 304 // pinning this skip in case it's a transient canary issue |
| 302 'uri_test': is.chrome('59') ? ['skip'] : ['slow'], | 305 'uri_test': is.chrome('59') ? ['skip'] : ['slow'], |
| 303 | 306 |
| (...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 | 907 |
| 905 for (let action of unittest_tests) { | 908 for (let action of unittest_tests) { |
| 906 try { | 909 try { |
| 907 action(); | 910 action(); |
| 908 } catch (e) { | 911 } catch (e) { |
| 909 console.error("Caught error tying to setup test:", e); | 912 console.error("Caught error tying to setup test:", e); |
| 910 } | 913 } |
| 911 } | 914 } |
| 912 }); | 915 }); |
| 913 }); | 916 }); |
| OLD | NEW |