| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 'integer_division_by_zero_test': fail, | 199 'integer_division_by_zero_test': fail, |
| 200 'issue_22780_test_01_multi': fail, | 200 'issue_22780_test_01_multi': fail, |
| 201 'lazy_static3_test': fail, | 201 'lazy_static3_test': fail, |
| 202 'least_upper_bound_expansive_test_none_multi': fail, | 202 'least_upper_bound_expansive_test_none_multi': fail, |
| 203 'left_shift_test': fail, | 203 'left_shift_test': fail, |
| 204 'list_is_test': fail, | 204 'list_is_test': fail, |
| 205 'list_literal3_test': fail, | 205 'list_literal3_test': fail, |
| 206 'many_generic_instanceof_test': fail, | 206 'many_generic_instanceof_test': fail, |
| 207 'map_literal10_test': fail, | 207 'map_literal10_test': fail, |
| 208 'map_literal7_test': fail, | 208 'map_literal7_test': fail, |
| 209 'memory_swap_test': is.firefox() ? skip_timeout : pass, | 209 'memory_swap_test': skip_timeout, |
| 210 'method_invocation_test': fail, | 210 'method_invocation_test': fail, |
| 211 'mint_arithmetic_test': fail, | 211 'mint_arithmetic_test': fail, |
| 212 'mixin_forwarding_constructor3_test': fail, | 212 'mixin_forwarding_constructor3_test': fail, |
| 213 'mixin_implements_test': fail, | 213 'mixin_implements_test': fail, |
| 214 'mixin_issue10216_2_test': fail, | 214 'mixin_issue10216_2_test': fail, |
| 215 'mixin_mixin2_test': fail, | 215 'mixin_mixin2_test': fail, |
| 216 'mixin_mixin3_test': fail, | 216 'mixin_mixin3_test': fail, |
| 217 'mixin_mixin4_test': fail, | 217 'mixin_mixin4_test': fail, |
| 218 'mixin_mixin5_test': fail, | 218 'mixin_mixin5_test': fail, |
| 219 'mixin_mixin6_test': fail, | 219 'mixin_mixin6_test': fail, |
| (...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 | 862 |
| 863 for (let action of unittest_tests) { | 863 for (let action of unittest_tests) { |
| 864 try { | 864 try { |
| 865 action(); | 865 action(); |
| 866 } catch (e) { | 866 } catch (e) { |
| 867 console.error("Caught error tying to setup test:", e); | 867 console.error("Caught error tying to setup test:", e); |
| 868 } | 868 } |
| 869 } | 869 } |
| 870 }); | 870 }); |
| 871 }); | 871 }); |
| OLD | NEW |