| 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', 'require'], | 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'require'], |
| 6 function(dart_sdk, async_helper, expect, unittest, require) { | 6 function(dart_sdk, async_helper, expect, 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 let minitest = expect.minitest; | 10 let minitest = expect.minitest; |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 'new_instance_with_type_arguments_test': fail, | 629 'new_instance_with_type_arguments_test': fail, |
| 630 'null2_test': fail, | 630 'null2_test': fail, |
| 631 'null_test': fail, | 631 'null_test': fail, |
| 632 'other_declarations_location_test': fail, | 632 'other_declarations_location_test': fail, |
| 633 'parameter_annotation_mirror_test': fail, | 633 'parameter_annotation_mirror_test': fail, |
| 634 'parameter_is_const_test_none_multi': fail, | 634 'parameter_is_const_test_none_multi': fail, |
| 635 'parameter_metadata_test': fail, | 635 'parameter_metadata_test': fail, |
| 636 'private_class_field_test': fail, | 636 'private_class_field_test': fail, |
| 637 'private_symbol_mangling_test': fail, | 637 'private_symbol_mangling_test': fail, |
| 638 'private_types_test': fail, | 638 'private_types_test': fail, |
| 639 'proxy_type_test': fail, | |
| 640 'raw_type_test_01_multi': fail, | 639 'raw_type_test_01_multi': fail, |
| 641 'raw_type_test_none_multi': fail, | 640 'raw_type_test_none_multi': fail, |
| 642 'reflect_class_test_none_multi': fail, | 641 'reflect_class_test_none_multi': fail, |
| 643 'reflect_runtime_type_test': fail, | 642 'reflect_runtime_type_test': fail, |
| 644 'reflect_uninstantiated_class_test': fail, | 643 'reflect_uninstantiated_class_test': fail, |
| 645 'reflected_type_classes_test_none_multi': fail, | 644 'reflected_type_classes_test_none_multi': fail, |
| 646 'reflected_type_function_type_test': fail, | 645 'reflected_type_function_type_test': fail, |
| 647 'reflected_type_special_types_test': fail, | 646 'reflected_type_special_types_test': fail, |
| 648 'reflected_type_test_none_multi': fail, | 647 'reflected_type_test_none_multi': fail, |
| 649 'reflected_type_typedefs_test': fail, | 648 'reflected_type_typedefs_test': fail, |
| 650 'reflected_type_typevars_test': fail, | 649 'reflected_type_typevars_test': fail, |
| 651 'reflectively_instantiate_uninstantiated_class_test': fail, | 650 'reflectively_instantiate_uninstantiated_class_test': fail, |
| 652 'regress_14304_test': fail, | 651 'regress_14304_test': fail, |
| 653 'regress_26187_test': fail, | 652 'regress_26187_test': fail, |
| 654 'relation_assignable_test': fail, | 653 'relation_assignable_test': fail, |
| 655 'relation_subtype_test': fail, | 654 'relation_subtype_test': fail, |
| 656 'runtime_type_test': fail, | |
| 657 'set_field_with_final_test': fail, | 655 'set_field_with_final_test': fail, |
| 658 'superclass2_test': fail, | |
| 659 'symbol_validation_test_01_multi': fail, | 656 'symbol_validation_test_01_multi': fail, |
| 660 'symbol_validation_test_none_multi': fail, | 657 'symbol_validation_test_none_multi': fail, |
| 661 'to_string_test': fail, | 658 'to_string_test': fail, |
| 662 'type_argument_is_type_variable_test': fail, | 659 'type_argument_is_type_variable_test': fail, |
| 663 'type_variable_is_static_test': fail, | 660 'type_variable_is_static_test': fail, |
| 664 'type_variable_owner_test_01_multi': fail, | 661 'type_variable_owner_test_01_multi': fail, |
| 665 'type_variable_owner_test_none_multi': fail, | 662 'type_variable_owner_test_none_multi': fail, |
| 666 'typedef_deferred_library_test': skip_fail, // Isolate spawn not support | 663 'typedef_deferred_library_test': skip_fail, // Isolate spawn not support |
| 667 'typedef_library_test': fail, | 664 'typedef_library_test': fail, |
| 668 'typedef_metadata_test': fail, | 665 'typedef_metadata_test': fail, |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 | 829 |
| 833 for (let action of unittest_tests) { | 830 for (let action of unittest_tests) { |
| 834 try { | 831 try { |
| 835 action(); | 832 action(); |
| 836 } catch (e) { | 833 } catch (e) { |
| 837 console.error("Caught error tying to setup test:", e); | 834 console.error("Caught error tying to setup test:", e); |
| 838 } | 835 } |
| 839 } | 836 } |
| 840 }); | 837 }); |
| 841 }); | 838 }); |
| OLD | NEW |