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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 'identical_closure2_test': fail, | 151 'identical_closure2_test': fail, |
152 'infinite_switch_label_test': fail, | 152 'infinite_switch_label_test': fail, |
153 'infinity_test': fail, | 153 'infinity_test': fail, |
154 'initializing_formal_final_test': fail, | 154 'initializing_formal_final_test': fail, |
155 'instance_creation_in_function_annotation_test': fail, | 155 'instance_creation_in_function_annotation_test': fail, |
156 'instanceof2_test': fail, | 156 'instanceof2_test': fail, |
157 'instanceof4_test_01_multi': fail, | 157 'instanceof4_test_01_multi': fail, |
158 'instanceof4_test_none_multi': fail, | 158 'instanceof4_test_none_multi': fail, |
159 'integer_division_by_zero_test': fail, | 159 'integer_division_by_zero_test': fail, |
160 'issue23244_test': fail, | 160 'issue23244_test': fail, |
| 161 'invocation_mirror_test': fail, // dcall does not correctly detect named a
rguments |
| 162 'invocation_mirror2_test': fail, // JsInstanceMirror.delegate unimplemente
d |
161 'lazy_static3_test': fail, | 163 'lazy_static3_test': fail, |
162 'least_upper_bound_expansive_test_none_multi': fail, | 164 'least_upper_bound_expansive_test_none_multi': fail, |
163 'left_shift_test': fail, | 165 'left_shift_test': fail, |
164 'list_is_test': fail, | 166 'list_is_test': fail, |
165 'list_literal3_test': fail, | 167 'list_literal3_test': fail, |
166 'main_test_03_multi': fail, | 168 'main_test_03_multi': fail, |
167 'many_generic_instanceof_test': fail, | 169 'many_generic_instanceof_test': fail, |
168 'many_named_arguments_test': whitelist, | 170 'many_named_arguments_test': whitelist, |
169 'map_literal10_test': fail, | 171 'map_literal10_test': fail, |
170 'map_literal7_test': fail, | 172 'map_literal7_test': fail, |
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
888 | 890 |
889 for (let action of unittest_tests) { | 891 for (let action of unittest_tests) { |
890 try { | 892 try { |
891 action(); | 893 action(); |
892 } catch (e) { | 894 } catch (e) { |
893 console.error("Caught error tying to setup test:", e); | 895 console.error("Caught error tying to setup test:", e); |
894 } | 896 } |
895 } | 897 } |
896 }); | 898 }); |
897 }); | 899 }); |
OLD | NEW |