| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 'string_trimlr_test_none_multi': is.chrome('<=58') ? fail : pass, | 350 'string_trimlr_test_none_multi': is.chrome('<=58') ? fail : pass, |
| 351 'symbol_reserved_word_test_06_multi': fail, | 351 'symbol_reserved_word_test_06_multi': fail, |
| 352 'symbol_reserved_word_test_09_multi': fail, | 352 'symbol_reserved_word_test_09_multi': fail, |
| 353 'symbol_reserved_word_test_12_multi': fail, | 353 'symbol_reserved_word_test_12_multi': fail, |
| 354 'throw_half_surrogate_pair_test_01_multi': fail, | 354 'throw_half_surrogate_pair_test_01_multi': fail, |
| 355 'unicode_test': firefox_fail, | 355 'unicode_test': firefox_fail, |
| 356 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, | 356 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, |
| 357 // TODO(rnystrom): Times out because it tests a huge number of | 357 // TODO(rnystrom): Times out because it tests a huge number of |
| 358 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). | 358 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). |
| 359 'uri_parse_test': skip_timeout, | 359 'uri_parse_test': skip_timeout, |
| 360 'uri_test': 'slow', | 360 |
| 361 // this is timing out on Chrome Canary only |
| 362 // pinning this skip in case it's a transient canary issue |
| 363 'uri_test': is.chrome('59') ? ['skip'] : ['slow'], |
| 361 | 364 |
| 362 'list_insert_test': fail, | 365 'list_insert_test': fail, |
| 363 'list_removeat_test': fail, | 366 'list_removeat_test': fail, |
| 364 }, | 367 }, |
| 365 | 368 |
| 366 'corelib/regexp': { | 369 'corelib/regexp': { |
| 367 'default_arguments_test': fail, | 370 'default_arguments_test': fail, |
| 368 'UC16_test': firefox_fail, | 371 'UC16_test': firefox_fail, |
| 369 }, | 372 }, |
| 370 | 373 |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 | 916 |
| 914 for (let action of unittest_tests) { | 917 for (let action of unittest_tests) { |
| 915 try { | 918 try { |
| 916 action(); | 919 action(); |
| 917 } catch (e) { | 920 } catch (e) { |
| 918 console.error("Caught error tying to setup test:", e); | 921 console.error("Caught error tying to setup test:", e); |
| 919 } | 922 } |
| 920 } | 923 } |
| 921 }); | 924 }); |
| 922 }); | 925 }); |
| OLD | NEW |