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

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

Issue 2981213002: Fix DDC status (Closed)
Patch Set: Created 3 years, 5 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 function(dart_sdk, async_helper, expect, unittest, is, require) { 6 function(dart_sdk, async_helper, expect, unittest, is, require) {
7 'use strict'; 7 'use strict';
8 8
9 async_helper = async_helper.async_helper; 9 async_helper = async_helper.async_helper;
10 let minitest = expect.minitest; 10 let minitest = expect.minitest;
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 'invoke_named_test_none_multi': fail, 568 'invoke_named_test_none_multi': fail,
569 'invoke_natives_malicious_test': fail, 569 'invoke_natives_malicious_test': fail,
570 'invoke_private_test': fail, 570 'invoke_private_test': fail,
571 'invoke_private_wrong_library_test': fail, 571 'invoke_private_wrong_library_test': fail,
572 'invoke_test': fail, 572 'invoke_test': fail,
573 'invoke_throws_test': fail, 573 'invoke_throws_test': fail,
574 'libraries_test': fail, 574 'libraries_test': fail,
575 'library_imports_bad_metadata_test_none_multi': fail, 575 'library_imports_bad_metadata_test_none_multi': fail,
576 'library_metadata_test': fail, 576 'library_metadata_test': fail,
577 'library_uri_io_test': async_unittest, 577 'library_uri_io_test': async_unittest,
578 'library_uri_package_test': async_unittest, 578 'library_uri_package_test': async_unittest,
579 'list_constructor_test_01_multi': fail, 579 'list_constructor_test_01_multi': fail,
580 'list_constructor_test_none_multi': fail, 580 'list_constructor_test_none_multi': fail,
581 'load_library_test': fail, 581 'load_library_test': fail,
582 'local_function_is_static_test': fail, 582 'local_function_is_static_test': fail,
583 'local_isolate_test': fail, 583 'local_isolate_test': fail,
584 'metadata_allowed_values_test_none_multi': fail, 584 'metadata_allowed_values_test_none_multi': fail,
585 'metadata_scope_test_none_multi': fail, 585 'metadata_scope_test_none_multi': fail,
586 'metadata_test': fail, 586 'metadata_test': fail,
587 'method_mirror_location_test': fail, 587 'method_mirror_location_test': fail,
588 'method_mirror_returntype_test': fail, 588 'method_mirror_returntype_test': fail,
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 888
889 for (let action of unittest_tests) { 889 for (let action of unittest_tests) {
890 try { 890 try {
891 action(); 891 action();
892 } catch (e) { 892 } catch (e) {
893 console.error("Caught error tying to setup test:", e); 893 console.error("Caught error tying to setup test:", e);
894 } 894 }
895 } 895 }
896 }); 896 });
897 }); 897 });
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