| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 'numbers_test': fail, | 187 'numbers_test': fail, |
| 188 'redirecting_factory_reflection_test': fail, | 188 'redirecting_factory_reflection_test': fail, |
| 189 'reg_exp_test': whitelist, | 189 'reg_exp_test': whitelist, |
| 190 'regress_16640_test': fail, | 190 'regress_16640_test': fail, |
| 191 'regress_18535_test': fail, | 191 'regress_18535_test': fail, |
| 192 'regress_22445_test': fail, | 192 'regress_22445_test': fail, |
| 193 'regress_22666_test': fail, | 193 'regress_22666_test': fail, |
| 194 'regress_22777_test': flaky, | 194 'regress_22777_test': flaky, |
| 195 'stack_overflow_stacktrace_test': fail, | 195 'stack_overflow_stacktrace_test': fail, |
| 196 'stack_overflow_test': fail, | 196 'stack_overflow_test': fail, |
| 197 | |
| 198 // https://github.com/dart-lang/sdk/issues/30075 | |
| 199 'stacktrace_rethrow_error_test_withtraceparameter_multi': fail, | |
| 200 'stacktrace_rethrow_nonerror_test': fail, | |
| 201 | |
| 202 'stacktrace_test': chrome_fail, | 197 'stacktrace_test': chrome_fail, |
| 203 'string_interpolate_null_test': fail, | 198 'string_interpolate_null_test': fail, |
| 204 'switch_label2_test': fail, | 199 'switch_label2_test': fail, |
| 205 'switch_label_test': fail, | 200 'switch_label_test': fail, |
| 206 'switch_try_catch_test': fail, | 201 'switch_try_catch_test': fail, |
| 207 'throwing_lazy_variable_test': fail, | 202 'throwing_lazy_variable_test': fail, |
| 208 'truncdiv_test': fail, // did not throw | 203 'truncdiv_test': fail, // did not throw |
| 209 'try_catch_on_syntax_test_10_multi': fail, | 204 'try_catch_on_syntax_test_10_multi': fail, |
| 210 'try_catch_on_syntax_test_11_multi': fail, | 205 'try_catch_on_syntax_test_11_multi': fail, |
| 211 'type_variable_nested_test': fail, | 206 'type_variable_nested_test': fail, |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 | 908 |
| 914 for (let action of unittest_tests) { | 909 for (let action of unittest_tests) { |
| 915 try { | 910 try { |
| 916 action(); | 911 action(); |
| 917 } catch (e) { | 912 } catch (e) { |
| 918 console.error("Caught error tying to setup test:", e); | 913 console.error("Caught error tying to setup test:", e); |
| 919 } | 914 } |
| 920 } | 915 } |
| 921 }); | 916 }); |
| 922 }); | 917 }); |
| OLD | NEW |