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

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

Issue 2998483002: fix ddc travis bot (Closed)
Patch Set: fix comment Created 3 years, 4 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
« no previous file with comments | « no previous file | tests/language_strong/language_strong.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 'big_integer_arith_vm_test_mul_multi': fail, 223 'big_integer_arith_vm_test_mul_multi': fail,
224 'big_integer_arith_vm_test_negate_multi': fail, 224 'big_integer_arith_vm_test_negate_multi': fail,
225 'big_integer_arith_vm_test_none_multi': fail, 225 'big_integer_arith_vm_test_none_multi': fail,
226 'big_integer_arith_vm_test_overflow_multi': fail, 226 'big_integer_arith_vm_test_overflow_multi': fail,
227 'big_integer_arith_vm_test_shift_multi': fail, 227 'big_integer_arith_vm_test_shift_multi': fail,
228 'big_integer_arith_vm_test_sub_multi': fail, 228 'big_integer_arith_vm_test_sub_multi': fail,
229 'big_integer_arith_vm_test_trunDiv_multi': fail, 229 'big_integer_arith_vm_test_trunDiv_multi': fail,
230 'big_integer_parsed_arith_vm_test': fail, 230 'big_integer_parsed_arith_vm_test': fail,
231 'big_integer_parsed_div_rem_vm_test': fail, 231 'big_integer_parsed_div_rem_vm_test': fail,
232 'big_integer_parsed_mul_div_vm_test': fail, 232 'big_integer_parsed_mul_div_vm_test': fail,
233
234 'bit_twiddling_bigint_test': fail, 233 'bit_twiddling_bigint_test': fail,
235 'collection_length_test': skip_timeout, 234 'collection_length_test': skip_timeout,
236 'compare_to2_test': fail, 235 'compare_to2_test': fail,
237 'const_list_literal_test': fail, 236 'const_list_literal_test': fail,
238 'const_list_remove_range_test': fail, 237 'const_list_remove_range_test': fail,
239 'const_list_set_range_test': fail, 238 'const_list_set_range_test': fail,
240 'core_runtime_types_test': fail, 239 'core_runtime_types_test': fail,
241 'date_time10_test': fail, 240 'date_time10_test': fail,
242 'double_parse_test_02_multi': firefox_fail, 241 'double_parse_test_02_multi': firefox_fail,
242 'error_stack_trace_test_nullThrown_multi': fail,
243 'list_unmodifiable_test': fail, // DDC is throwing a strong mode error, so it may be a test bug
243 'for_in_test': is.firefox('<=50') ? fail : pass, 244 'for_in_test': is.firefox('<=50') ? fail : pass,
244 'growable_list_test': fail, 245 'growable_list_test': fail,
245 'hash_map2_test': skip_timeout, 246 'hash_map2_test': skip_timeout,
246 'hash_set_test_01_multi': fail, 247 'hash_set_test_01_multi': fail,
247 'int_modulo_arith_test_bignum_multi': fail, 248 'int_modulo_arith_test_bignum_multi': fail,
248 'int_modulo_arith_test_modPow_multi': fail, 249 'int_modulo_arith_test_modPow_multi': fail,
249 'int_modulo_arith_test_none_multi': fail, 250 'int_modulo_arith_test_none_multi': fail,
250 '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.
251 '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.
252 'int_parse_radix_test_none_multi': ['slow'], 253 'int_parse_radix_test_none_multi': ['slow'],
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 863
863 for (let action of unittest_tests) { 864 for (let action of unittest_tests) {
864 try { 865 try {
865 action(); 866 action();
866 } catch (e) { 867 } catch (e) {
867 console.error("Caught error tying to setup test:", e); 868 console.error("Caught error tying to setup test:", e);
868 } 869 }
869 } 870 }
870 }); 871 });
871 }); 872 });
OLDNEW
« no previous file with comments | « no previous file | tests/language_strong/language_strong.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698