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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
335 'throw_half_surrogate_pair_test_01_multi': fail, | 335 'throw_half_surrogate_pair_test_01_multi': fail, |
336 'unicode_test': firefox_fail, | 336 'unicode_test': firefox_fail, |
337 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, | 337 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass, |
338 // TODO(rnystrom): Times out because it tests a huge number of | 338 // TODO(rnystrom): Times out because it tests a huge number of |
339 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). | 339 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). |
340 'uri_parse_test': skip_timeout, | 340 'uri_parse_test': skip_timeout, |
341 'uri_test': is.firefox('<=50') ? fail : pass, | 341 'uri_test': is.firefox('<=50') ? fail : pass, |
342 | 342 |
343 'list_insert_test': fail, | 343 'list_insert_test': fail, |
344 'list_removeat_test': fail, | 344 'list_removeat_test': fail, |
345 'set_test': fail, // runtime strong mode reject | |
346 }, | 345 }, |
347 | 346 |
348 'corelib/regexp': { | 347 'corelib/regexp': { |
349 'default_arguments_test': fail, | 348 'default_arguments_test': fail, |
350 'UC16_test': firefox_fail, | 349 'UC16_test': firefox_fail, |
351 }, | 350 }, |
352 | 351 |
353 'lib/collection': { | 352 'lib/collection': { |
353 'list_test': fail, | |
vsm
2017/02/17 16:37:51
Any idea why this one started breaking?
Jennifer Messerly
2017/02/24 23:00:43
yes, was an internal array created with "[]" inste
| |
354 }, | 354 }, |
355 | 355 |
356 'lib/convert': { | 356 'lib/convert': { |
357 'base64_test_01_multi': 'slow', | 357 'base64_test_01_multi': 'slow', |
358 'chunked_conversion_utf85_test': 'slow', | 358 'chunked_conversion_utf85_test': 'slow', |
359 | 359 |
360 'encoding_test': skip_timeout, | 360 'encoding_test': skip_timeout, |
361 | 361 |
362 'json_utf8_chunk_test': skip_timeout, | 362 'json_utf8_chunk_test': skip_timeout, |
363 'latin1_test': skip_timeout, | 363 'latin1_test': skip_timeout, |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
862 | 862 |
863 for (let action of unittest_tests) { | 863 for (let action of unittest_tests) { |
864 try { | 864 try { |
865 action(); | 865 action(); |
866 } catch (e) { | 866 } catch (e) { |
867 console.error("Caught error tying to setup test:", e); | 867 console.error("Caught error tying to setup test:", e); |
868 } | 868 } |
869 } | 869 } |
870 }); | 870 }); |
871 }); | 871 }); |
OLD | NEW |