| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 'string_operations_with_null_test': fail, | 336 'string_operations_with_null_test': fail, |
| 337 'symbol_reserved_word_test_06_multi': fail, | 337 'symbol_reserved_word_test_06_multi': fail, |
| 338 'symbol_reserved_word_test_09_multi': fail, | 338 'symbol_reserved_word_test_09_multi': fail, |
| 339 'symbol_reserved_word_test_12_multi': fail, | 339 'symbol_reserved_word_test_12_multi': fail, |
| 340 'throw_half_surrogate_pair_test_01_multi': fail, | 340 'throw_half_surrogate_pair_test_01_multi': fail, |
| 341 'unicode_test': firefox_fail, | 341 'unicode_test': firefox_fail, |
| 342 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, | 342 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, |
| 343 // TODO(rnystrom): Times out because it tests a huge number of | 343 // TODO(rnystrom): Times out because it tests a huge number of |
| 344 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). | 344 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). |
| 345 'uri_parse_test': skip_timeout, | 345 'uri_parse_test': skip_timeout, |
| 346 'uri_test': is.firefox('<=50') ? fail : pass, | 346 'uri_test': 'slow', |
| 347 | 347 |
| 348 'list_insert_test': fail, | 348 'list_insert_test': fail, |
| 349 'list_removeat_test': fail, | 349 'list_removeat_test': fail, |
| 350 }, | 350 }, |
| 351 | 351 |
| 352 'corelib/regexp': { | 352 'corelib/regexp': { |
| 353 'default_arguments_test': fail, | 353 'default_arguments_test': fail, |
| 354 'UC16_test': firefox_fail, | 354 'UC16_test': firefox_fail, |
| 355 }, | 355 }, |
| 356 | 356 |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 | 867 |
| 868 for (let action of unittest_tests) { | 868 for (let action of unittest_tests) { |
| 869 try { | 869 try { |
| 870 action(); | 870 action(); |
| 871 } catch (e) { | 871 } catch (e) { |
| 872 console.error("Caught error tying to setup test:", e); | 872 console.error("Caught error tying to setup test:", e); |
| 873 } | 873 } |
| 874 } | 874 } |
| 875 }); | 875 }); |
| 876 }); | 876 }); |
| OLD | NEW |