| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 'function_subtype_top_level1_test': fail, | 183 'function_subtype_top_level1_test': fail, |
| 184 'function_subtype_typearg2_test': fail, | 184 'function_subtype_typearg2_test': fail, |
| 185 'function_subtype_typearg4_test': fail, | 185 'function_subtype_typearg4_test': fail, |
| 186 'function_type_alias2_test': fail, | 186 'function_type_alias2_test': fail, |
| 187 'function_type_alias3_test': fail, | 187 'function_type_alias3_test': fail, |
| 188 'function_type_alias4_test': fail, | 188 'function_type_alias4_test': fail, |
| 189 'function_type_alias6_test_none_multi': fail, | 189 'function_type_alias6_test_none_multi': fail, |
| 190 'generic_instanceof_test': fail, // runtime strong mode reject | 190 'generic_instanceof_test': fail, // runtime strong mode reject |
| 191 'generic_instanceof2_test': fail, | 191 'generic_instanceof2_test': fail, |
| 192 'generic_is_check_test': fail, | 192 'generic_is_check_test': fail, |
| 193 'generic_methods_dynamic_test_02_multi': fail, |
| 194 'generic_methods_dynamic_test_04_multi': fail, |
| 195 'generic_methods_recursive_bound_test_03_multi': fail, |
| 196 'generic_methods_simple_as_expression_test_02_multi': fail, |
| 193 'getter_closure_execution_order_test': fail, | 197 'getter_closure_execution_order_test': fail, |
| 194 'gc_test': 'slow', | 198 'gc_test': 'slow', |
| 195 'identical_closure2_test': fail, | 199 'identical_closure2_test': fail, |
| 196 'infinite_switch_label_test': fail, | 200 'infinite_switch_label_test': fail, |
| 197 'infinity_test': fail, | 201 'infinity_test': fail, |
| 198 'initializing_formal_final_test': fail, | 202 'initializing_formal_final_test': fail, |
| 199 'instance_creation_in_function_annotation_test': fail, | 203 'instance_creation_in_function_annotation_test': fail, |
| 200 'instanceof2_test': fail, | 204 'instanceof2_test': fail, |
| 201 'instanceof4_test_01_multi': fail, | 205 'instanceof4_test_01_multi': fail, |
| 202 'instanceof4_test_none_multi': fail, | 206 'instanceof4_test_none_multi': fail, |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 | 897 |
| 894 for (let action of unittest_tests) { | 898 for (let action of unittest_tests) { |
| 895 try { | 899 try { |
| 896 action(); | 900 action(); |
| 897 } catch (e) { | 901 } catch (e) { |
| 898 console.error("Caught error tying to setup test:", e); | 902 console.error("Caught error tying to setup test:", e); |
| 899 } | 903 } |
| 900 } | 904 } |
| 901 }); | 905 }); |
| 902 }); | 906 }); |
| OLD | NEW |