| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'generic_field_mixin5_test': skip_fail, | 204 'generic_field_mixin5_test': skip_fail, |
| 205 'generic_field_mixin_test': skip_fail, | 205 'generic_field_mixin_test': skip_fail, |
| 206 'generic_instanceof_test': fail, // runtime strong mode reject | 206 'generic_instanceof_test': fail, // runtime strong mode reject |
| 207 'generic_instanceof2_test': skip_fail, | 207 'generic_instanceof2_test': skip_fail, |
| 208 'generic_is_check_test': skip_fail, | 208 'generic_is_check_test': skip_fail, |
| 209 'getter_closure_execution_order_test': skip_fail, | 209 'getter_closure_execution_order_test': skip_fail, |
| 210 'hash_code_mangling_test': skip_fail, | 210 'hash_code_mangling_test': skip_fail, |
| 211 'identical_closure2_test': skip_fail, | 211 'identical_closure2_test': skip_fail, |
| 212 'infinite_switch_label_test': skip_fail, | 212 'infinite_switch_label_test': skip_fail, |
| 213 'infinity_test': skip_fail, | 213 'infinity_test': skip_fail, |
| 214 'initializing_formal_final_test': skip_fail, |
| 214 'instance_creation_in_function_annotation_test': skip_fail, | 215 'instance_creation_in_function_annotation_test': skip_fail, |
| 215 'instanceof2_test': fail, | 216 'instanceof2_test': fail, |
| 216 'instanceof4_test_01_multi': fail, | 217 'instanceof4_test_01_multi': fail, |
| 217 'instanceof4_test_none_multi': fail, | 218 'instanceof4_test_none_multi': fail, |
| 218 'instanceof_optimized_test': skip_fail, | 219 'instanceof_optimized_test': skip_fail, |
| 219 'integer_division_by_zero_test': fail, | 220 'integer_division_by_zero_test': fail, |
| 220 'is_nan_test': fail, | 221 'is_nan_test': fail, |
| 221 'issue10747_test': skip_fail, | 222 'issue10747_test': skip_fail, |
| 222 'issue13179_test': skip_fail, | 223 'issue13179_test': skip_fail, |
| 223 'issue21079_test': skip_fail, | 224 'issue21079_test': skip_fail, |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 | 843 |
| 843 for (let action of unittest_tests) { | 844 for (let action of unittest_tests) { |
| 844 try { | 845 try { |
| 845 action(); | 846 action(); |
| 846 } catch (e) { | 847 } catch (e) { |
| 847 console.error("Caught error tying to setup test:", e); | 848 console.error("Caught error tying to setup test:", e); |
| 848 } | 849 } |
| 849 } | 850 } |
| 850 }); | 851 }); |
| 851 }); | 852 }); |
| OLD | NEW |