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 'left_shift_test': fail, | 183 'left_shift_test': fail, |
184 'list_is_test': fail, | 184 'list_is_test': fail, |
185 'list_literal3_test': fail, | 185 'list_literal3_test': fail, |
186 'many_generic_instanceof_test': fail, | 186 'many_generic_instanceof_test': fail, |
187 'many_named_arguments_test': whitelist, | 187 'many_named_arguments_test': whitelist, |
188 'map_literal10_test': fail, | 188 'map_literal10_test': fail, |
189 'map_literal7_test': fail, | 189 'map_literal7_test': fail, |
190 'memory_swap_test': skip_timeout, | 190 'memory_swap_test': skip_timeout, |
191 'method_invocation_test': fail, | 191 'method_invocation_test': fail, |
192 'mint_arithmetic_test': fail, | 192 'mint_arithmetic_test': fail, |
193 'mixin_super_constructor_positionals_test_none_multi': fail, // Issue 2805
9 | |
194 'modulo_test': fail, | 193 'modulo_test': fail, |
195 'named_parameter_clash_test': fail, | 194 'named_parameter_clash_test': fail, |
196 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, | 195 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, |
197 'nan_identical_test': fail, | 196 'nan_identical_test': fail, |
198 'nested_switch_label_test': fail, | 197 'nested_switch_label_test': fail, |
199 'number_identifier_test_05_multi': fail, | 198 'number_identifier_test_05_multi': fail, |
200 'number_identity2_test': fail, | 199 'number_identity2_test': fail, |
201 'numbers_test': fail, | 200 'numbers_test': fail, |
202 'redirecting_factory_reflection_test': fail, | 201 'redirecting_factory_reflection_test': fail, |
203 'reg_exp_test': whitelist, | 202 'reg_exp_test': whitelist, |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
931 | 930 |
932 for (let action of unittest_tests) { | 931 for (let action of unittest_tests) { |
933 try { | 932 try { |
934 action(); | 933 action(); |
935 } catch (e) { | 934 } catch (e) { |
936 console.error("Caught error tying to setup test:", e); | 935 console.error("Caught error tying to setup test:", e); |
937 } | 936 } |
938 } | 937 } |
939 }); | 938 }); |
940 }); | 939 }); |
OLD | NEW |