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

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

Issue 2653253002: Use microtasks in dart.async (Closed)
Patch Set: Mark test as skip Created 3 years, 11 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 67
68 // TODO(vsm): Re-enable (https://github.com/dart-lang/sdk/issues/28319) 68 // TODO(vsm): Re-enable (https://github.com/dart-lang/sdk/issues/28319)
69 'async_star_test_none_multi': async_unittest, 69 'async_star_test_none_multi': async_unittest,
70 'async_star_test_01_multi': async_unittest, 70 'async_star_test_01_multi': async_unittest,
71 'async_star_test_02_multi': async_unittest, 71 'async_star_test_02_multi': async_unittest,
72 'async_star_test_03_multi': async_unittest, 72 'async_star_test_03_multi': async_unittest,
73 'async_star_test_04_multi': async_unittest, 73 'async_star_test_04_multi': async_unittest,
74 'async_star_test_05_multi': async_unittest, 74 'async_star_test_05_multi': async_unittest,
75 75
76 'async_switch_test': fail, 76 'async_switch_test': fail,
77 'asyncstar_throw_in_catch_test': fail, 77 'asyncstar_throw_in_catch_test': ['skip', 'fail'],
78 'await_future_test': skip_timeout, 78 'await_future_test': skip_timeout,
79 'bit_operations_test_none_multi': fail, // DDC/dart2js canonicalize bitop results to unsigned 79 'bit_operations_test_none_multi': fail, // DDC/dart2js canonicalize bitop results to unsigned
80 'branch_canonicalization_test': fail, // JS bit operations truncate to 32 bits. 80 'branch_canonicalization_test': fail, // JS bit operations truncate to 32 bits.
81 'call_closurization_test': fail, // Functions do not expose a "call" metho d. 81 'call_closurization_test': fail, // Functions do not expose a "call" metho d.
82 'call_function_apply_test': fail, // Function.apply not really implemented . 82 'call_function_apply_test': fail, // Function.apply not really implemented .
83 'call_through_null_getter_test': fail, // null errors are not converted to NoSuchMethodErrors. 83 'call_through_null_getter_test': fail, // null errors are not converted to NoSuchMethodErrors.
84 'call_with_no_such_method_test': fail, // Function.apply not really implem ented. 84 'call_with_no_such_method_test': fail, // Function.apply not really implem ented.
85 'canonical_const2_test': fail, 85 'canonical_const2_test': fail,
86 'canonical_const_test': fail, 86 'canonical_const_test': fail,
87 'cast_test_01_multi': fail, 87 'cast_test_01_multi': fail,
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 878
879 for (let action of unittest_tests) { 879 for (let action of unittest_tests) {
880 try { 880 try {
881 action(); 881 action();
882 } catch (e) { 882 } catch (e) {
883 console.error("Caught error tying to setup test:", e); 883 console.error("Caught error tying to setup test:", e);
884 } 884 }
885 } 885 }
886 }); 886 });
887 }); 887 });
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/sdk/ddc_sdk.sum ('k') | pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/generators.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698