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

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

Issue 3004073002: Remove corelib/corelib_strong and migrate last two remaining tests. (Closed)
Patch Set: 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 '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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 210
211 'language/covariant_override': {}, 211 'language/covariant_override': {},
212 212
213 'language/function_type': { 213 'language/function_type': {
214 'function_type50_test': fail, 214 'function_type50_test': fail,
215 'function_type58_test': fail, 215 'function_type58_test': fail,
216 }, 216 },
217 217
218 'codegen': {}, 218 'codegen': {},
219 219
220 'corelib': { 220 'corelib_2': {},
221 'apply2_test': fail,
222 'apply3_test': fail,
223 'big_integer_arith_vm_test_add_multi': fail,
224 'big_integer_arith_vm_test_div_multi': fail,
225 'big_integer_arith_vm_test_gcd_multi': fail,
226 'big_integer_arith_vm_test_modInv_multi': fail,
227 'big_integer_arith_vm_test_modPow_multi': fail,
228 'big_integer_arith_vm_test_mod_multi': fail,
229 'big_integer_arith_vm_test_mul_multi': fail,
230 'big_integer_arith_vm_test_negate_multi': fail,
231 'big_integer_arith_vm_test_none_multi': fail,
232 'big_integer_arith_vm_test_overflow_multi': fail,
233 'big_integer_arith_vm_test_shift_multi': fail,
234 'big_integer_arith_vm_test_sub_multi': fail,
235 'big_integer_arith_vm_test_trunDiv_multi': fail,
236 'big_integer_parsed_arith_vm_test': fail,
237 'big_integer_parsed_div_rem_vm_test': fail,
238 'big_integer_parsed_mul_div_vm_test': fail,
239 'bit_twiddling_bigint_test': fail,
240 'collection_length_test': skip_timeout,
241 'compare_to2_test': fail,
242 'const_list_literal_test': fail,
243 'const_list_remove_range_test': fail,
244 'const_list_set_range_test': fail,
245 'core_runtime_types_test': fail,
246 'date_time10_test': fail,
247 'double_parse_test_02_multi': firefox_fail,
248 'error_stack_trace_test_nullThrown_multi': fail,
249 'for_in_test': is.firefox('<=50') ? fail : pass,
250 'growable_list_test': fail,
251 'hash_map2_test': skip_timeout,
252 'hash_set_test_01_multi': fail,
253 'int_modulo_arith_test_bignum_multi': fail,
254 'int_modulo_arith_test_modPow_multi': fail,
255 'int_modulo_arith_test_none_multi': fail,
256 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U +0085 being whitespace.
257 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint s.
258 'int_parse_radix_test_none_multi': ['slow'],
259 'int_parse_with_limited_ints_test': fail,
260 'integer_to_radix_string_test': fail,
261 'integer_to_string_test_01_multi': fail,
262 'iterable_fold_test_02_multi': fail,
263 'iterable_reduce_test_none_multi': fail,
264 'iterable_return_type_test_02_multi': fail,
265 'json_map_test': fail,
266 'list_fill_range_test': fail,
267 'list_replace_range_test': fail,
268 'list_set_all_test': fail,
269 'list_test_01_multi': fail,
270 'list_test_none_multi': fail,
271 'main_test': fail,
272 'map_keys2_test': fail,
273 'map_from_iterable_test': is.firefox('<=50') ? fail : pass,
274 'map_test': fail,
275 'nan_infinity_test_01_multi': fail,
276 'null_nosuchmethod_test': fail,
277 'regress_r21715_test': fail,
278 'splay_tree_from_iterable_test': is.firefox('<=50') ? fail : pass,
279 'string_case_test_01_multi': firefox_fail,
280 'string_fromcharcodes_test': skip_timeout,
281 'string_operations_with_null_test': fail,
282 'string_trimlr_test_01_multi': is.chrome('<=58') ? fail : pass,
283 'string_trimlr_test_none_multi': is.chrome('<=58') ? fail : pass,
284 'symbol_operator_test_03_multi': fail,
285 'symbol_operator_test_none_multi': fail,
286 'symbol_reserved_word_test_06_multi': fail,
287 'symbol_reserved_word_test_09_multi': fail,
288 'symbol_reserved_word_test_12_multi': fail,
289 'symbol_test_none_multi': fail,
290 'typed_data_with_limited_ints_test': fail,
291 'unicode_test': firefox_fail,
292 'uri_parameters_all_test': is.firefox('<=50') ? fail : pass,
293 // TODO(rnystrom): Times out because it tests a huge number of
294 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200).
295 'uri_parse_test': skip_timeout,
296 'uri_query_test': fail,
297 // this is timing out on Chrome Canary only
298 // pinning this skip in case it's a transient canary issue
299 'uri_test': is.chrome('59') ? ['skip'] : ['slow'],
300 221
301 'list_insert_test': fail, 222 'corelib_2/regexp': {},
302 'list_removeat_test': fail,
303
304 'iterable_to_list_test_01_multi': fail,
305 'iterable_to_list_test_none_multi': fail
306 },
307
308 'corelib/regexp': {
309 'default_arguments_test': fail,
310 'UC16_test': firefox_fail,
311 },
312 223
313 'lib/async': { 224 'lib/async': {
314 'first_regression_test': async_unittest, 225 'first_regression_test': async_unittest,
315 'future_or_bad_type_test_implements_multi': fail, 226 'future_or_bad_type_test_implements_multi': fail,
316 'future_or_bad_type_test_none_multi': fail, 227 'future_or_bad_type_test_none_multi': fail,
317 'future_or_non_strong_test': fail, 228 'future_or_non_strong_test': fail,
318 'future_test_none_multi': fail, 229 'future_test_none_multi': fail,
319 'future_timeout_test': async_unittest, 230 'future_timeout_test': async_unittest,
320 'intercept_schedule_microtask5_test': async_unittest, 231 'intercept_schedule_microtask5_test': async_unittest,
321 'multiple_timer_test': async_unittest, 232 'multiple_timer_test': async_unittest,
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 786
876 for (let action of unittest_tests) { 787 for (let action of unittest_tests) {
877 try { 788 try {
878 action(); 789 action();
879 } catch (e) { 790 } catch (e) {
880 console.error("Caught error tying to setup test:", e); 791 console.error("Caught error tying to setup test:", e);
881 } 792 }
882 } 793 }
883 }); 794 });
884 }); 795 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698