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