OLD | NEW |
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 Loading... |
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 Loading... |
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 }); |
OLD | NEW |