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

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

Issue 2994203002: Optimize DDC private library files. (Closed)
Patch Set: Address comments 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'bit_twiddling_bigint_test': fail, 234 'bit_twiddling_bigint_test': fail,
235 'collection_length_test': skip_timeout, 235 'collection_length_test': skip_timeout,
236 'compare_to2_test': fail, 236 'compare_to2_test': fail,
237 'const_list_literal_test': fail, 237 'const_list_literal_test': fail,
238 'const_list_remove_range_test': fail, 238 'const_list_remove_range_test': fail,
239 'const_list_set_range_test': fail, 239 'const_list_set_range_test': fail,
240 'core_runtime_types_test': fail, 240 'core_runtime_types_test': fail,
241 'date_time10_test': fail, 241 'date_time10_test': fail,
242 'double_parse_test_02_multi': firefox_fail, 242 'double_parse_test_02_multi': firefox_fail,
243 'error_stack_trace_test_nullThrown_multi': fail, 243 'error_stack_trace_test_nullThrown_multi': fail,
244 'list_unmodifiable_test': fail, // DDC is throwing a strong mode error, so it may be a test bug
245 'for_in_test': is.firefox('<=50') ? fail : pass, 244 'for_in_test': is.firefox('<=50') ? fail : pass,
246 'growable_list_test': fail, 245 'growable_list_test': fail,
247 'hash_map2_test': skip_timeout, 246 'hash_map2_test': skip_timeout,
248 'hash_set_test_01_multi': fail, 247 'hash_set_test_01_multi': fail,
249 'int_modulo_arith_test_bignum_multi': fail, 248 'int_modulo_arith_test_bignum_multi': fail,
250 'int_modulo_arith_test_modPow_multi': fail, 249 'int_modulo_arith_test_modPow_multi': fail,
251 'int_modulo_arith_test_none_multi': fail, 250 'int_modulo_arith_test_none_multi': fail,
252 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U +0085 being whitespace. 251 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U +0085 being whitespace.
253 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint s. 252 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint s.
254 'int_parse_radix_test_none_multi': ['slow'], 253 'int_parse_radix_test_none_multi': ['slow'],
255 'int_parse_with_limited_ints_test': fail, 254 'int_parse_with_limited_ints_test': fail,
256 'integer_to_radix_string_test': fail, 255 'integer_to_radix_string_test': fail,
257 'integer_to_string_test_01_multi': fail, 256 'integer_to_string_test_01_multi': fail,
257 'iterable_fold_test_02_multi': fail,
258 'iterable_return_type_test_02_multi': fail, 258 'iterable_return_type_test_02_multi': fail,
259 'json_map_test': fail, 259 'json_map_test': fail,
260 'list_fill_range_test': fail, 260 'list_fill_range_test': fail,
261 'list_replace_range_test': fail, 261 'list_replace_range_test': fail,
262 'list_set_all_test': fail, 262 'list_set_all_test': fail,
263 'list_test_01_multi': fail, 263 'list_test_01_multi': fail,
264 'list_test_none_multi': fail, 264 'list_test_none_multi': fail,
265 'main_test': fail, 265 'main_test': fail,
266 'map_keys2_test': fail, 266 'map_keys2_test': fail,
267 'map_from_iterable_test': is.firefox('<=50') ? fail : pass, 267 'map_from_iterable_test': is.firefox('<=50') ? fail : pass,
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 867
868 for (let action of unittest_tests) { 868 for (let action of unittest_tests) {
869 try { 869 try {
870 action(); 870 action();
871 } catch (e) { 871 } catch (e) {
872 console.error("Caught error tying to setup test:", e); 872 console.error("Caught error tying to setup test:", e);
873 } 873 }
874 } 874 }
875 }); 875 });
876 }); 876 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698