| 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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 'invoke_private_test': fail, | 616 'invoke_private_test': fail, |
| 617 'invoke_private_wrong_library_test': fail, | 617 'invoke_private_wrong_library_test': fail, |
| 618 'invoke_test': fail, | 618 'invoke_test': fail, |
| 619 'invoke_throws_test': fail, | 619 'invoke_throws_test': fail, |
| 620 'io_html_mutual_exclusion_test': fail, | 620 'io_html_mutual_exclusion_test': fail, |
| 621 'libraries_test': fail, | 621 'libraries_test': fail, |
| 622 'library_enumeration_deferred_loading_test': fail, | 622 'library_enumeration_deferred_loading_test': fail, |
| 623 'library_imports_bad_metadata_test_none_multi': fail, | 623 'library_imports_bad_metadata_test_none_multi': fail, |
| 624 'library_metadata2_test_none_multi': fail, | 624 'library_metadata2_test_none_multi': fail, |
| 625 'library_metadata_test': fail, | 625 'library_metadata_test': fail, |
| 626 'library_uri_io_test': fail, |
| 626 'library_uri_package_test': fail, | 627 'library_uri_package_test': fail, |
| 627 'list_constructor_test_01_multi': fail, | 628 'list_constructor_test_01_multi': fail, |
| 628 'list_constructor_test_none_multi': fail, | 629 'list_constructor_test_none_multi': fail, |
| 629 'local_function_is_static_test': fail, | 630 'local_function_is_static_test': fail, |
| 630 'local_isolate_test': fail, | 631 'local_isolate_test': fail, |
| 631 'metadata_allowed_values_test_none_multi': fail, | 632 'metadata_allowed_values_test_none_multi': fail, |
| 632 'metadata_scope_test_none_multi': fail, | 633 'metadata_scope_test_none_multi': fail, |
| 633 'metadata_test': fail, | 634 'metadata_test': fail, |
| 634 'method_mirror_location_test': fail, | 635 'method_mirror_location_test': fail, |
| 635 'method_mirror_returntype_test': fail, | 636 'method_mirror_returntype_test': fail, |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 | 844 |
| 844 for (let action of unittest_tests) { | 845 for (let action of unittest_tests) { |
| 845 try { | 846 try { |
| 846 action(); | 847 action(); |
| 847 } catch (e) { | 848 } catch (e) { |
| 848 console.error("Caught error tying to setup test:", e); | 849 console.error("Caught error tying to setup test:", e); |
| 849 } | 850 } |
| 850 } | 851 } |
| 851 }); | 852 }); |
| 852 }); | 853 }); |
| OLD | NEW |