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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 'many_generic_instanceof_test': fail, | 187 'many_generic_instanceof_test': fail, |
188 'many_named_arguments_test': whitelist, | 188 'many_named_arguments_test': whitelist, |
189 'map_literal10_test': fail, | 189 'map_literal10_test': fail, |
190 'map_literal7_test': fail, | 190 'map_literal7_test': fail, |
191 'memory_swap_test': skip_timeout, | 191 'memory_swap_test': skip_timeout, |
192 'method_invocation_test': fail, | 192 'method_invocation_test': fail, |
193 'mint_arithmetic_test': fail, | 193 'mint_arithmetic_test': fail, |
194 'mixin_forwarding_constructor3_test': fail, | 194 'mixin_forwarding_constructor3_test': fail, |
195 'mixin_implements_test': fail, | 195 'mixin_implements_test': fail, |
196 'mixin_regress_13688_test': fail, | 196 'mixin_regress_13688_test': fail, |
| 197 'mixin_super_constructor_test': fail, // https://github.com/dart-lang/sdk/
issues/28059 |
| 198 'mixin_super_constructor2_test': fail, // Issue 28059 |
| 199 'mixin_super_constructor_named_test_none_multi': fail, // Issue 28059 |
| 200 'mixin_super_constructor_positionals_test_none_multi': fail, // Issue 2805
9 |
197 'modulo_test': fail, | 201 'modulo_test': fail, |
198 'named_parameter_clash_test': fail, | 202 'named_parameter_clash_test': fail, |
199 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, | 203 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, |
200 'nan_identical_test': fail, | 204 'nan_identical_test': fail, |
201 'nested_switch_label_test': fail, | 205 'nested_switch_label_test': fail, |
202 'number_identifier_test_05_multi': fail, | 206 'number_identifier_test_05_multi': fail, |
203 'number_identity2_test': fail, | 207 'number_identity2_test': fail, |
204 'numbers_test': fail, | 208 'numbers_test': fail, |
205 'redirecting_factory_reflection_test': fail, | 209 'redirecting_factory_reflection_test': fail, |
206 'reg_exp_test': whitelist, | 210 'reg_exp_test': whitelist, |
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 | 931 |
928 for (let action of unittest_tests) { | 932 for (let action of unittest_tests) { |
929 try { | 933 try { |
930 action(); | 934 action(); |
931 } catch (e) { | 935 } catch (e) { |
932 console.error("Caught error tying to setup test:", e); | 936 console.error("Caught error tying to setup test:", e); |
933 } | 937 } |
934 } | 938 } |
935 }); | 939 }); |
936 }); | 940 }); |
OLD | NEW |