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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'list_is_test': fail, | 213 'list_is_test': fail, |
214 'list_literal3_test': fail, | 214 'list_literal3_test': fail, |
215 'many_generic_instanceof_test': fail, | 215 'many_generic_instanceof_test': fail, |
216 'many_named_arguments_test': whitelist, | 216 'many_named_arguments_test': whitelist, |
217 'map_literal10_test': fail, | 217 'map_literal10_test': fail, |
218 'map_literal7_test': fail, | 218 'map_literal7_test': fail, |
219 'memory_swap_test': skip_timeout, | 219 'memory_swap_test': skip_timeout, |
220 'method_invocation_test': fail, | 220 'method_invocation_test': fail, |
221 'mint_arithmetic_test': fail, | 221 'mint_arithmetic_test': fail, |
222 'mixin_forwarding_constructor3_test': fail, | 222 'mixin_forwarding_constructor3_test': fail, |
223 'mixin_implements_test': fail, | |
224 'mixin_regress_13688_test': fail, | |
225 'modulo_test': fail, | 223 'modulo_test': fail, |
226 'named_parameter_clash_test': fail, | 224 'named_parameter_clash_test': fail, |
227 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, | 225 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, |
228 'nan_identical_test': fail, | 226 'nan_identical_test': fail, |
229 'nested_switch_label_test': fail, | 227 'nested_switch_label_test': fail, |
230 'number_identifier_test_05_multi': fail, | 228 'number_identifier_test_05_multi': fail, |
231 'number_identity2_test': fail, | 229 'number_identity2_test': fail, |
232 'numbers_test': fail, | 230 'numbers_test': fail, |
233 'redirecting_factory_reflection_test': fail, | 231 'redirecting_factory_reflection_test': fail, |
234 'reg_exp_test': whitelist, | 232 'reg_exp_test': whitelist, |
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 | 906 |
909 for (let action of unittest_tests) { | 907 for (let action of unittest_tests) { |
910 try { | 908 try { |
911 action(); | 909 action(); |
912 } catch (e) { | 910 } catch (e) { |
913 console.error("Caught error tying to setup test:", e); | 911 console.error("Caught error tying to setup test:", e); |
914 } | 912 } |
915 } | 913 } |
916 }); | 914 }); |
917 }); | 915 }); |
OLD | NEW |