| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 'iterable_to_list_test_01_multi': fail, | 298 'iterable_to_list_test_01_multi': fail, |
| 299 'iterable_to_list_test_none_multi': fail | 299 'iterable_to_list_test_none_multi': fail |
| 300 }, | 300 }, |
| 301 | 301 |
| 302 'corelib/regexp': { | 302 'corelib/regexp': { |
| 303 'default_arguments_test': fail, | 303 'default_arguments_test': fail, |
| 304 'UC16_test': firefox_fail, | 304 'UC16_test': firefox_fail, |
| 305 }, | 305 }, |
| 306 | 306 |
| 307 'lib/async': { | 307 'lib/async': { |
| 308 'async_await_zones_test': fail, |
| 308 'first_regression_test': async_unittest, | 309 'first_regression_test': async_unittest, |
| 309 'future_or_bad_type_test_implements_multi': fail, | 310 'future_or_bad_type_test_implements_multi': fail, |
| 310 'future_or_bad_type_test_none_multi': fail, | 311 'future_or_bad_type_test_none_multi': fail, |
| 311 'future_or_non_strong_test': fail, | 312 'future_or_non_strong_test': fail, |
| 312 'future_timeout_test': async_unittest, | 313 'future_timeout_test': async_unittest, |
| 313 'multiple_timer_test': async_unittest, | 314 'multiple_timer_test': async_unittest, |
| 314 'futures_test': fail, | 315 'futures_test': fail, |
| 315 'schedule_microtask2_test': async_unittest, | 316 'schedule_microtask2_test': async_unittest, |
| 316 'schedule_microtask3_test': async_unittest, | 317 'schedule_microtask3_test': async_unittest, |
| 317 'schedule_microtask5_test': async_unittest, | 318 'schedule_microtask5_test': async_unittest, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 338 'stream_transform_test': async_unittest, | 339 'stream_transform_test': async_unittest, |
| 339 'stream_transformation_broadcast_test': async_unittest, | 340 'stream_transformation_broadcast_test': async_unittest, |
| 340 'stream_transformer_from_handlers_test': fail, | 341 'stream_transformer_from_handlers_test': fail, |
| 341 'timer_cancel1_test': async_unittest, | 342 'timer_cancel1_test': async_unittest, |
| 342 'timer_cancel2_test': async_unittest, | 343 'timer_cancel2_test': async_unittest, |
| 343 'timer_cancel_test': async_unittest, | 344 'timer_cancel_test': async_unittest, |
| 344 'timer_isActive_test': async_unittest, | 345 'timer_isActive_test': async_unittest, |
| 345 'timer_not_available_test': fail, | 346 'timer_not_available_test': fail, |
| 346 'timer_repeat_test': async_unittest, | 347 'timer_repeat_test': async_unittest, |
| 347 'timer_test': async_unittest, | 348 'timer_test': async_unittest, |
| 348 'zone_bind_callback_test': fail, | |
| 349 'zone_error_callback_test': fail, | 349 'zone_error_callback_test': fail, |
| 350 'zone_register_callback_test': fail, | |
| 351 'zone_run_unary_test': fail, | 350 'zone_run_unary_test': fail, |
| 352 }, | 351 }, |
| 353 | 352 |
| 354 'lib/collection': {}, | 353 'lib/collection': {}, |
| 355 | 354 |
| 356 'lib/convert': { | 355 'lib/convert': { |
| 357 'base64_test_01_multi': 'slow', | 356 'base64_test_01_multi': 'slow', |
| 358 'chunked_conversion_utf85_test': 'slow', | 357 'chunked_conversion_utf85_test': 'slow', |
| 359 | 358 |
| 360 'encoding_test': skip_timeout, | 359 'encoding_test': skip_timeout, |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 | 866 |
| 868 for (let action of unittest_tests) { | 867 for (let action of unittest_tests) { |
| 869 try { | 868 try { |
| 870 action(); | 869 action(); |
| 871 } catch (e) { | 870 } catch (e) { |
| 872 console.error("Caught error tying to setup test:", e); | 871 console.error("Caught error tying to setup test:", e); |
| 873 } | 872 } |
| 874 } | 873 } |
| 875 }); | 874 }); |
| 876 }); | 875 }); |
| OLD | NEW |