| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 'function_subtype_typearg4_test': fail, | 157 'function_subtype_typearg4_test': fail, |
| 158 'function_type_alias3_test': fail, | 158 'function_type_alias3_test': fail, |
| 159 'function_type_alias6_test_none_multi': fail, | 159 'function_type_alias6_test_none_multi': fail, |
| 160 'generic_instanceof_test': fail, // runtime strong mode reject | 160 'generic_instanceof_test': fail, // runtime strong mode reject |
| 161 'generic_instanceof2_test': fail, | 161 'generic_instanceof2_test': fail, |
| 162 'generic_is_check_test': fail, | 162 'generic_is_check_test': fail, |
| 163 'generic_methods_dynamic_test_02_multi': fail, | 163 'generic_methods_dynamic_test_02_multi': fail, |
| 164 'generic_methods_dynamic_test_04_multi': fail, | 164 'generic_methods_dynamic_test_04_multi': fail, |
| 165 'generic_methods_recursive_bound_test_03_multi': fail, | 165 'generic_methods_recursive_bound_test_03_multi': fail, |
| 166 'generic_methods_simple_as_expression_test_02_multi': fail, | 166 'generic_methods_simple_as_expression_test_02_multi': fail, |
| 167 'generic_methods_generic_class_tearoff_test': fail, |
| 167 'getter_closure_execution_order_test': fail, | 168 'getter_closure_execution_order_test': fail, |
| 168 'gc_test': 'slow', | 169 'gc_test': 'slow', |
| 169 'identical_closure2_test': fail, | 170 'identical_closure2_test': fail, |
| 170 'infinite_switch_label_test': fail, | 171 'infinite_switch_label_test': fail, |
| 171 'infinity_test': fail, | 172 'infinity_test': fail, |
| 172 'initializing_formal_final_test': fail, | 173 'initializing_formal_final_test': fail, |
| 173 'instance_creation_in_function_annotation_test': fail, | 174 'instance_creation_in_function_annotation_test': fail, |
| 174 'instanceof2_test': fail, | 175 'instanceof2_test': fail, |
| 175 'instanceof4_test_01_multi': fail, | 176 'instanceof4_test_01_multi': fail, |
| 176 'instanceof4_test_none_multi': fail, | 177 'instanceof4_test_none_multi': fail, |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 | 927 |
| 927 for (let action of unittest_tests) { | 928 for (let action of unittest_tests) { |
| 928 try { | 929 try { |
| 929 action(); | 930 action(); |
| 930 } catch (e) { | 931 } catch (e) { |
| 931 console.error("Caught error tying to setup test:", e); | 932 console.error("Caught error tying to setup test:", e); |
| 932 } | 933 } |
| 933 } | 934 } |
| 934 }); | 935 }); |
| 935 }); | 936 }); |
| OLD | NEW |