Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: pkg/dev_compiler/test/browser/language_tests.js

Issue 3014593002: Use generic functions in zones. (Closed)
Patch Set: Added changes missing from patch set #2 Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 'list_insert_test': fail, 291 'list_insert_test': fail,
292 'list_removeat_test': fail, 292 'list_removeat_test': fail,
293 }, 293 },
294 294
295 'corelib/regexp': { 295 'corelib/regexp': {
296 'default_arguments_test': fail, 296 'default_arguments_test': fail,
297 'UC16_test': firefox_fail, 297 'UC16_test': firefox_fail,
298 }, 298 },
299 299
300 'lib/async': { 300 'lib/async': {
301 'async_await_zones_test': fail,
301 'first_regression_test': async_unittest, 302 'first_regression_test': async_unittest,
302 'future_or_bad_type_test_implements_multi': fail, 303 'future_or_bad_type_test_implements_multi': fail,
303 'future_or_bad_type_test_none_multi': fail, 304 'future_or_bad_type_test_none_multi': fail,
304 'future_or_non_strong_test': fail, 305 'future_or_non_strong_test': fail,
305 'future_timeout_test': async_unittest, 306 'future_timeout_test': async_unittest,
306 'multiple_timer_test': async_unittest, 307 'multiple_timer_test': async_unittest,
307 'futures_test': fail, 308 'futures_test': fail,
308 'schedule_microtask2_test': async_unittest, 309 'schedule_microtask2_test': async_unittest,
309 'schedule_microtask3_test': async_unittest, 310 'schedule_microtask3_test': async_unittest,
310 'schedule_microtask5_test': async_unittest, 311 'schedule_microtask5_test': async_unittest,
(...skipping 20 matching lines...) Expand all
331 'stream_transform_test': async_unittest, 332 'stream_transform_test': async_unittest,
332 'stream_transformation_broadcast_test': async_unittest, 333 'stream_transformation_broadcast_test': async_unittest,
333 'stream_transformer_from_handlers_test': fail, 334 'stream_transformer_from_handlers_test': fail,
334 'timer_cancel1_test': async_unittest, 335 'timer_cancel1_test': async_unittest,
335 'timer_cancel2_test': async_unittest, 336 'timer_cancel2_test': async_unittest,
336 'timer_cancel_test': async_unittest, 337 'timer_cancel_test': async_unittest,
337 'timer_isActive_test': async_unittest, 338 'timer_isActive_test': async_unittest,
338 'timer_not_available_test': fail, 339 'timer_not_available_test': fail,
339 'timer_repeat_test': async_unittest, 340 'timer_repeat_test': async_unittest,
340 'timer_test': async_unittest, 341 'timer_test': async_unittest,
341 'zone_bind_callback_test': fail,
342 'zone_error_callback_test': fail, 342 'zone_error_callback_test': fail,
343 'zone_register_callback_test': fail,
344 'zone_run_unary_test': fail, 343 'zone_run_unary_test': fail,
345 }, 344 },
346 345
347 'lib/collection': { 346 'lib/collection': {
348 'linked_list_test': whitelist, 347 'linked_list_test': whitelist,
349 }, 348 },
350 349
351 'lib/convert': { 350 'lib/convert': {
352 'base64_test_01_multi': 'slow', 351 'base64_test_01_multi': 'slow',
353 'chunked_conversion_utf82_test': whitelist, 352 'chunked_conversion_utf82_test': whitelist,
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 898
900 for (let action of unittest_tests) { 899 for (let action of unittest_tests) {
901 try { 900 try {
902 action(); 901 action();
903 } catch (e) { 902 } catch (e) {
904 console.error("Caught error tying to setup test:", e); 903 console.error("Caught error tying to setup test:", e);
905 } 904 }
906 } 905 }
907 }); 906 });
908 }); 907 });
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/common/tasks.dart ('k') | pkg/dev_compiler/tool/input_sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698