| 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', 'unittest', 'require'], | 5 define(['dart_sdk', 'async_helper', 'unittest', 'require'], |
| 6 function(dart_sdk, async_helper, unittest, require) { | 6 function(dart_sdk, async_helper, unittest, require) { |
| 7 'use strict'; | 7 'use strict'; |
| 8 | 8 |
| 9 async_helper = async_helper.async_helper; | 9 async_helper = async_helper.async_helper; |
| 10 | 10 |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 'generic_mixin_test': fail, | 634 'generic_mixin_test': fail, |
| 635 'generic_superclass_test_01_multi': fail, | 635 'generic_superclass_test_01_multi': fail, |
| 636 'generic_superclass_test_none_multi': fail, | 636 'generic_superclass_test_none_multi': fail, |
| 637 'generic_type_mirror_test': fail, | 637 'generic_type_mirror_test': fail, |
| 638 'generics_double_substitution_test_01_multi': fail, | 638 'generics_double_substitution_test_01_multi': fail, |
| 639 'generics_double_substitution_test_none_multi': fail, | 639 'generics_double_substitution_test_none_multi': fail, |
| 640 'generics_dynamic_test': fail, | 640 'generics_dynamic_test': fail, |
| 641 'generics_special_types_test': fail, | 641 'generics_special_types_test': fail, |
| 642 'generics_substitution_test': fail, | 642 'generics_substitution_test': fail, |
| 643 'generics_test_none_multi': fail, | 643 'generics_test_none_multi': fail, |
| 644 'get_field_static_test_00_multi': fail, | |
| 645 'get_field_static_test_none_multi': fail, | |
| 646 'globalized_closures2_test_00_multi': fail, | 644 'globalized_closures2_test_00_multi': fail, |
| 647 'globalized_closures2_test_none_multi': fail, | 645 'globalized_closures2_test_none_multi': fail, |
| 648 'globalized_closures_test_00_multi': fail, | 646 'globalized_closures_test_00_multi': fail, |
| 649 'globalized_closures_test_none_multi': fail, | 647 'globalized_closures_test_none_multi': fail, |
| 650 'hierarchy_invariants_test': fail, | 648 'hierarchy_invariants_test': fail, |
| 651 'hot_get_field_test': fail, | 649 'hot_get_field_test': fail, |
| 652 'hot_set_field_test': fail, | 650 'hot_set_field_test': fail, |
| 653 'inherited_metadata_test': fail, | 651 'inherited_metadata_test': fail, |
| 654 'instance_members_unimplemented_interface_test': fail, | 652 'instance_members_unimplemented_interface_test': fail, |
| 655 'instantiate_abstract_class_test': fail, | 653 'instantiate_abstract_class_test': fail, |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 'reflected_type_test_none_multi': fail, | 713 'reflected_type_test_none_multi': fail, |
| 716 'reflected_type_typedefs_test': fail, | 714 'reflected_type_typedefs_test': fail, |
| 717 'reflected_type_typevars_test': fail, | 715 'reflected_type_typevars_test': fail, |
| 718 'reflectively_instantiate_uninstantiated_class_test': fail, | 716 'reflectively_instantiate_uninstantiated_class_test': fail, |
| 719 'regress_14304_test': fail, | 717 'regress_14304_test': fail, |
| 720 'regress_26187_test': fail, | 718 'regress_26187_test': fail, |
| 721 'relation_assignable_test': fail, | 719 'relation_assignable_test': fail, |
| 722 'relation_subtype_test': fail, | 720 'relation_subtype_test': fail, |
| 723 'runtime_type_test': fail, | 721 'runtime_type_test': fail, |
| 724 'set_field_with_final_test': fail, | 722 'set_field_with_final_test': fail, |
| 725 'static_const_field_test': fail, | |
| 726 'superclass2_test': fail, | 723 'superclass2_test': fail, |
| 727 'symbol_validation_test_01_multi': fail, | 724 'symbol_validation_test_01_multi': fail, |
| 728 'symbol_validation_test_none_multi': fail, | 725 'symbol_validation_test_none_multi': fail, |
| 729 'to_string_test': fail, | 726 'to_string_test': fail, |
| 730 'type_argument_is_type_variable_test': fail, | 727 'type_argument_is_type_variable_test': fail, |
| 731 'type_variable_is_static_test': fail, | 728 'type_variable_is_static_test': fail, |
| 732 'type_variable_owner_test_01_multi': fail, | 729 'type_variable_owner_test_01_multi': fail, |
| 733 'type_variable_owner_test_none_multi': fail, | 730 'type_variable_owner_test_none_multi': fail, |
| 734 'typedef_deferred_library_test': skip_fail, // Isolate spawn not support | 731 'typedef_deferred_library_test': skip_fail, // Isolate spawn not support |
| 735 'typedef_library_test': fail, | 732 'typedef_library_test': fail, |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 | 888 |
| 892 for (let action of unittest_tests) { | 889 for (let action of unittest_tests) { |
| 893 try { | 890 try { |
| 894 action(); | 891 action(); |
| 895 } catch (e) { | 892 } catch (e) { |
| 896 console.error("Caught error tying to setup test:", e); | 893 console.error("Caught error tying to setup test:", e); |
| 897 } | 894 } |
| 898 } | 895 } |
| 899 }); | 896 }); |
| 900 }); | 897 }); |
| OLD | NEW |