| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 'list_insert_test': fail, | 293 'list_insert_test': fail, |
| 294 'list_removeat_test': fail, | 294 'list_removeat_test': fail, |
| 295 }, | 295 }, |
| 296 | 296 |
| 297 'corelib/regexp': { | 297 'corelib/regexp': { |
| 298 'default_arguments_test': fail, | 298 'default_arguments_test': fail, |
| 299 'UC16_test': firefox_fail, | 299 'UC16_test': firefox_fail, |
| 300 }, | 300 }, |
| 301 | 301 |
| 302 'lib/async': { | 302 'lib/async': { |
| 303 'async_await_zones_test': fail, |
| 303 'first_regression_test': async_unittest, | 304 'first_regression_test': async_unittest, |
| 304 'future_or_bad_type_test_implements_multi': fail, | 305 'future_or_bad_type_test_implements_multi': fail, |
| 305 'future_or_bad_type_test_none_multi': fail, | 306 'future_or_bad_type_test_none_multi': fail, |
| 306 'future_or_non_strong_test': fail, | 307 'future_or_non_strong_test': fail, |
| 307 'future_timeout_test': async_unittest, | 308 'future_timeout_test': async_unittest, |
| 308 'multiple_timer_test': async_unittest, | 309 'multiple_timer_test': async_unittest, |
| 309 'futures_test': fail, | 310 'futures_test': fail, |
| 310 'schedule_microtask2_test': async_unittest, | 311 'schedule_microtask2_test': async_unittest, |
| 311 'schedule_microtask3_test': async_unittest, | 312 'schedule_microtask3_test': async_unittest, |
| 312 'schedule_microtask5_test': async_unittest, | 313 'schedule_microtask5_test': async_unittest, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 333 'stream_transform_test': async_unittest, | 334 'stream_transform_test': async_unittest, |
| 334 'stream_transformation_broadcast_test': async_unittest, | 335 'stream_transformation_broadcast_test': async_unittest, |
| 335 'stream_transformer_from_handlers_test': fail, | 336 'stream_transformer_from_handlers_test': fail, |
| 336 'timer_cancel1_test': async_unittest, | 337 'timer_cancel1_test': async_unittest, |
| 337 'timer_cancel2_test': async_unittest, | 338 'timer_cancel2_test': async_unittest, |
| 338 'timer_cancel_test': async_unittest, | 339 'timer_cancel_test': async_unittest, |
| 339 'timer_isActive_test': async_unittest, | 340 'timer_isActive_test': async_unittest, |
| 340 'timer_not_available_test': fail, | 341 'timer_not_available_test': fail, |
| 341 'timer_repeat_test': async_unittest, | 342 'timer_repeat_test': async_unittest, |
| 342 'timer_test': async_unittest, | 343 'timer_test': async_unittest, |
| 343 'zone_bind_callback_test': fail, | |
| 344 'zone_error_callback_test': fail, | 344 'zone_error_callback_test': fail, |
| 345 'zone_register_callback_test': fail, | |
| 346 'zone_run_unary_test': fail, | 345 'zone_run_unary_test': fail, |
| 347 }, | 346 }, |
| 348 | 347 |
| 349 'lib/collection': {}, | 348 'lib/collection': {}, |
| 350 | 349 |
| 351 'lib/convert': { | 350 'lib/convert': { |
| 352 'base64_test_01_multi': 'slow', | 351 'base64_test_01_multi': 'slow', |
| 353 'chunked_conversion_utf85_test': 'slow', | 352 'chunked_conversion_utf85_test': 'slow', |
| 354 | 353 |
| 355 'encoding_test': skip_timeout, | 354 'encoding_test': skip_timeout, |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 | 861 |
| 863 for (let action of unittest_tests) { | 862 for (let action of unittest_tests) { |
| 864 try { | 863 try { |
| 865 action(); | 864 action(); |
| 866 } catch (e) { | 865 } catch (e) { |
| 867 console.error("Caught error tying to setup test:", e); | 866 console.error("Caught error tying to setup test:", e); |
| 868 } | 867 } |
| 869 } | 868 } |
| 870 }); | 869 }); |
| 871 }); | 870 }); |
| OLD | NEW |