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

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

Issue 1966473002: Update linked_list, queue, splay_tree (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 years, 7 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 | « lib/src/compiler/code_generator.dart ('k') | tool/input_sdk/lib/collection/linked_list.dart » ('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 (function() { 5 (function() {
6 'use strict'; 6 'use strict';
7 7
8 let dart_sdk = dart_library.import('dart_sdk'); 8 let dart_sdk = dart_library.import('dart_sdk');
9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []);
10 let async_helper = dart_library.import('async_helper').async_helper; 10 let async_helper = dart_library.import('async_helper').async_helper;
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 'int_from_environment_test': fail, 415 'int_from_environment_test': fail,
416 'int_modulo_arith_test_bignum_multi': fail, 416 'int_modulo_arith_test_bignum_multi': fail,
417 'int_modulo_arith_test_modPow_multi': fail, 417 'int_modulo_arith_test_modPow_multi': fail,
418 'int_modulo_arith_test_none_multi': fail, 418 'int_modulo_arith_test_none_multi': fail,
419 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U +0085 being whitespace. 419 'int_parse_radix_test_01_multi': fail, // JS implementations disagree on U +0085 being whitespace.
420 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint s. 420 'int_parse_radix_test_02_multi': ['fail', 'timeout', 'skip'], // No bigint s.
421 'int_parse_radix_test_none_multi': ['slow'], 421 'int_parse_radix_test_none_multi': ['slow'],
422 'integer_to_radix_string_test': fail, 422 'integer_to_radix_string_test': fail,
423 'integer_to_string_test_01_multi': fail, 423 'integer_to_string_test_01_multi': fail,
424 'iterable_generate_test': fail, 424 'iterable_generate_test': fail,
425 'iterable_return_type_test_01_multi': fail,
426 'iterable_return_type_test_02_multi': fail, 425 'iterable_return_type_test_02_multi': fail,
427 'iterable_return_type_test_none_multi': fail,
428 'json_map_test': fail, 426 'json_map_test': fail,
429 'list_fill_range_test': fail, 427 'list_fill_range_test': fail,
430 'list_replace_range_test': fail, 428 'list_replace_range_test': fail,
431 'list_set_all_test': fail, 429 'list_set_all_test': fail,
432 'list_to_string2_test': fail, 430 'list_to_string2_test': fail,
433 'list_to_string_test': fail, 431 'list_to_string_test': fail,
434 'main_test': fail, 432 'main_test': fail,
435 'map_keys2_test': fail, 433 'map_keys2_test': fail,
436 'map_to_string_test': fail, 434 'map_to_string_test': fail,
437 'nan_infinity_test_01_multi': fail, 435 'nan_infinity_test_01_multi': fail,
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 764
767 for (let action of unittest_tests) { 765 for (let action of unittest_tests) {
768 try { 766 try {
769 action(); 767 action();
770 } catch (e) { 768 } catch (e) {
771 console.error("Caught error tying to setup test:", e); 769 console.error("Caught error tying to setup test:", e);
772 } 770 }
773 } 771 }
774 }); 772 });
775 })(); 773 })();
OLDNEW
« no previous file with comments | « lib/src/compiler/code_generator.dart ('k') | tool/input_sdk/lib/collection/linked_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698