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

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

Issue 2214263005: Mark recursive_inheritance_test as passing (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Bumped pubspec Created 4 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 | « pubspec.yaml ('k') | test/codegen_expected/corelib/int_modulo_arith_test_bignum_multi.js » ('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 1775 matching lines...) Expand 10 before | Expand all | Expand 10 after
1786 'proxy2_test_01_multi': notyetstrong, 1786 'proxy2_test_01_multi': notyetstrong,
1787 'proxy2_test_02_multi': notyetstrong, 1787 'proxy2_test_02_multi': notyetstrong,
1788 'proxy3_test_01_multi': notyetstrong, 1788 'proxy3_test_01_multi': notyetstrong,
1789 'proxy3_test_02_multi': notyetstrong, 1789 'proxy3_test_02_multi': notyetstrong,
1790 'proxy3_test_03_multi': notyetstrong, 1790 'proxy3_test_03_multi': notyetstrong,
1791 'proxy3_test_04_multi': notyetstrong, 1791 'proxy3_test_04_multi': notyetstrong,
1792 'proxy_test_01_multi': notyetstrong, 1792 'proxy_test_01_multi': notyetstrong,
1793 'proxy_test_02_multi': notyetstrong, 1793 'proxy_test_02_multi': notyetstrong,
1794 'proxy_test_05_multi': notyetstrong, 1794 'proxy_test_05_multi': notyetstrong,
1795 'proxy_test_06_multi': notyetstrong, 1795 'proxy_test_06_multi': notyetstrong,
1796 'recursive_inheritance_test': notyetstrong, // https://github.com/dart-lan g/sdk/issues/26970
1797 'redirecting_constructor_initializer_test': notyetstrong, 1796 'redirecting_constructor_initializer_test': notyetstrong,
1798 'redirecting_factory_default_values_test_01_multi': notyetstrong, 1797 'redirecting_factory_default_values_test_01_multi': notyetstrong,
1799 'redirecting_factory_default_values_test_02_multi': notyetstrong, 1798 'redirecting_factory_default_values_test_02_multi': notyetstrong,
1800 'redirecting_factory_default_values_test_none_multi': notyetstrong, 1799 'redirecting_factory_default_values_test_none_multi': notyetstrong,
1801 'redirecting_factory_incompatible_signature_test': notyetstrong, 1800 'redirecting_factory_incompatible_signature_test': notyetstrong,
1802 'redirecting_factory_infinite_steps_test_01_multi': notyetstrong, 1801 'redirecting_factory_infinite_steps_test_01_multi': notyetstrong,
1803 'redirecting_factory_infinite_steps_test_02_multi': notyetstrong, 1802 'redirecting_factory_infinite_steps_test_02_multi': notyetstrong,
1804 'redirecting_factory_long_test': notyetstrong, 1803 'redirecting_factory_long_test': notyetstrong,
1805 'redirecting_factory_malbounded_test_01_multi': notyetstrong, 1804 'redirecting_factory_malbounded_test_01_multi': notyetstrong,
1806 'redirecting_factory_malbounded_test_none_multi': notyetstrong, 1805 'redirecting_factory_malbounded_test_none_multi': notyetstrong,
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
2899 2898
2900 for (let action of unittest_tests) { 2899 for (let action of unittest_tests) {
2901 try { 2900 try {
2902 action(); 2901 action();
2903 } catch (e) { 2902 } catch (e) {
2904 console.error("Caught error tying to setup test:", e); 2903 console.error("Caught error tying to setup test:", e);
2905 } 2904 }
2906 } 2905 }
2907 }); 2906 });
2908 })(); 2907 })();
OLDNEW
« no previous file with comments | « pubspec.yaml ('k') | test/codegen_expected/corelib/int_modulo_arith_test_bignum_multi.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698