| 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 'test_status'], | 6 'test_status'], |
| 7 function(dart_sdk, async_helper, expect, unittest, is, require, | 7 function(dart_sdk, async_helper, expect, unittest, is, require, |
| 8 test_status) { | 8 test_status) { |
| 9 'use strict'; | 9 'use strict'; |
| 10 | 10 |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 // TODO(rnystrom): Times out because it tests a huge number of | 286 // TODO(rnystrom): Times out because it tests a huge number of |
| 287 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). | 287 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). |
| 288 'uri_parse_test': skip_timeout, | 288 'uri_parse_test': skip_timeout, |
| 289 'uri_query_test': fail, | 289 'uri_query_test': fail, |
| 290 // this is timing out on Chrome Canary only | 290 // this is timing out on Chrome Canary only |
| 291 // pinning this skip in case it's a transient canary issue | 291 // pinning this skip in case it's a transient canary issue |
| 292 'uri_test': is.chrome('59') ? ['skip'] : ['slow'], | 292 'uri_test': is.chrome('59') ? ['skip'] : ['slow'], |
| 293 | 293 |
| 294 'list_insert_test': fail, | 294 'list_insert_test': fail, |
| 295 'list_removeat_test': fail, | 295 'list_removeat_test': fail, |
| 296 |
| 297 'iterable_to_list_test_01_multi': fail, |
| 298 'iterable_to_list_test_none_multi': fail, |
| 299 'iterable_to_set_test': fail |
| 296 }, | 300 }, |
| 297 | 301 |
| 298 'corelib/regexp': { | 302 'corelib/regexp': { |
| 299 'default_arguments_test': fail, | 303 'default_arguments_test': fail, |
| 300 'UC16_test': firefox_fail, | 304 'UC16_test': firefox_fail, |
| 301 }, | 305 }, |
| 302 | 306 |
| 303 'lib/async': { | 307 'lib/async': { |
| 304 'first_regression_test': async_unittest, | 308 'first_regression_test': async_unittest, |
| 305 'future_or_bad_type_test_implements_multi': fail, | 309 'future_or_bad_type_test_implements_multi': fail, |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 | 867 |
| 864 for (let action of unittest_tests) { | 868 for (let action of unittest_tests) { |
| 865 try { | 869 try { |
| 866 action(); | 870 action(); |
| 867 } catch (e) { | 871 } catch (e) { |
| 868 console.error("Caught error tying to setup test:", e); | 872 console.error("Caught error tying to setup test:", e); |
| 869 } | 873 } |
| 870 } | 874 } |
| 871 }); | 875 }); |
| 872 }); | 876 }); |
| OLD | NEW |