| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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, | 223 'mixin_implements_test': fail, |
| 224 'mixin_issue10216_2_test': fail, | |
| 225 'mixin_mixin2_test': fail, | |
| 226 'mixin_mixin3_test': fail, | |
| 227 'mixin_mixin4_test': fail, | 224 'mixin_mixin4_test': fail, |
| 228 'mixin_mixin5_test': fail, | 225 'mixin_mixin5_test': fail, |
| 229 'mixin_mixin6_test': fail, | 226 'mixin_mixin6_test': fail, |
| 230 'mixin_mixin7_test': fail, | 227 'mixin_mixin7_test': fail, |
| 231 'mixin_mixin_bound2_test': fail, | 228 'mixin_mixin_bound2_test': fail, |
| 232 'mixin_mixin_bound_test': fail, | 229 'mixin_mixin_bound_test': fail, |
| 233 'mixin_mixin_test': fail, | |
| 234 'mixin_regress_13688_test': fail, | 230 'mixin_regress_13688_test': fail, |
| 235 'modulo_test': fail, | 231 'modulo_test': fail, |
| 236 'named_parameter_clash_test': fail, | 232 'named_parameter_clash_test': fail, |
| 237 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, | 233 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, |
| 238 'nan_identical_test': fail, | 234 'nan_identical_test': fail, |
| 239 'nested_switch_label_test': fail, | 235 'nested_switch_label_test': fail, |
| 240 'number_identifier_test_05_multi': fail, | 236 'number_identifier_test_05_multi': fail, |
| 241 'number_identity2_test': fail, | 237 'number_identity2_test': fail, |
| 242 'numbers_test': fail, | 238 'numbers_test': fail, |
| 243 'redirecting_factory_reflection_test': fail, | 239 'redirecting_factory_reflection_test': fail, |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 | 914 |
| 919 for (let action of unittest_tests) { | 915 for (let action of unittest_tests) { |
| 920 try { | 916 try { |
| 921 action(); | 917 action(); |
| 922 } catch (e) { | 918 } catch (e) { |
| 923 console.error("Caught error tying to setup test:", e); | 919 console.error("Caught error tying to setup test:", e); |
| 924 } | 920 } |
| 925 } | 921 } |
| 926 }); | 922 }); |
| 927 }); | 923 }); |
| OLD | NEW |