| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 'memory_swap_test': skip_timeout, | 172 'memory_swap_test': skip_timeout, |
| 173 'mint_arithmetic_test': fail, | 173 'mint_arithmetic_test': fail, |
| 174 'modulo_test': fail, | 174 'modulo_test': fail, |
| 175 'named_parameter_clash_test': fail, | 175 'named_parameter_clash_test': fail, |
| 176 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, | 176 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, |
| 177 'nan_identical_test': fail, | 177 'nan_identical_test': fail, |
| 178 'nested_switch_label_test': fail, | 178 'nested_switch_label_test': fail, |
| 179 'number_identifier_test_05_multi': fail, | 179 'number_identifier_test_05_multi': fail, |
| 180 'number_identity2_test': fail, | 180 'number_identity2_test': fail, |
| 181 'numbers_test': fail, | 181 'numbers_test': fail, |
| 182 'redirecting_factory_reflection_test': fail, | |
| 183 'reg_exp_test': whitelist, | 182 'reg_exp_test': whitelist, |
| 184 'regress_16640_test': fail, | 183 'regress_16640_test': fail, |
| 185 'regress_18535_test': fail, | 184 'regress_18535_test': fail, |
| 186 'regress_22445_test': fail, | 185 'regress_22445_test': fail, |
| 187 'regress_22666_test': fail, | 186 'regress_22666_test': fail, |
| 188 'regress_22777_test': flaky, | 187 'regress_22777_test': flaky, |
| 189 'stack_overflow_stacktrace_test': fail, | 188 'stack_overflow_stacktrace_test': fail, |
| 190 'stack_overflow_test': fail, | 189 'stack_overflow_test': fail, |
| 191 'stacktrace_test': chrome_fail, | 190 'stacktrace_test': chrome_fail, |
| 192 'switch_label2_test': fail, | 191 'switch_label2_test': fail, |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 'abstract_class_test_none_multi': fail, | 516 'abstract_class_test_none_multi': fail, |
| 518 'accessor_cache_overflow_test': fail, | 517 'accessor_cache_overflow_test': fail, |
| 519 'array_tracing3_test': fail, | 518 'array_tracing3_test': fail, |
| 520 'array_tracing_test': fail, | 519 'array_tracing_test': fail, |
| 521 'basic_types_in_dart_core_test': fail, | 520 'basic_types_in_dart_core_test': fail, |
| 522 'class_mirror_location_test': fail, | 521 'class_mirror_location_test': fail, |
| 523 'class_mirror_type_variables_test': fail, | 522 'class_mirror_type_variables_test': fail, |
| 524 'closurization_equivalence_test': fail, | 523 'closurization_equivalence_test': fail, |
| 525 'constructor_kinds_test_01_multi': fail, | 524 'constructor_kinds_test_01_multi': fail, |
| 526 'constructor_kinds_test_none_multi': fail, | 525 'constructor_kinds_test_none_multi': fail, |
| 527 'constructor_optional_args_test': fail, | |
| 528 'constructor_private_name_test': fail, | 526 'constructor_private_name_test': fail, |
| 529 'declarations_type_test': fail, | 527 'declarations_type_test': fail, |
| 530 'deferred_mirrors_metadata_test': skip_timeout, | 528 'deferred_mirrors_metadata_test': skip_timeout, |
| 531 'deferred_mirrors_metatarget_test': skip_timeout, | 529 'deferred_mirrors_metatarget_test': skip_timeout, |
| 532 'deferred_mirrors_update_test': fail, | 530 'deferred_mirrors_update_test': fail, |
| 533 'empty_test': fail, | 531 'empty_test': fail, |
| 534 'equality_test': fail, | 532 'equality_test': fail, |
| 535 'fake_function_with_call_test': fail, | 533 'fake_function_with_call_test': fail, |
| 536 'field_type_test': fail, | 534 'field_type_test': fail, |
| 537 'function_type_mirror_test': fail, | 535 'function_type_mirror_test': fail, |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 | 897 |
| 900 for (let action of unittest_tests) { | 898 for (let action of unittest_tests) { |
| 901 try { | 899 try { |
| 902 action(); | 900 action(); |
| 903 } catch (e) { | 901 } catch (e) { |
| 904 console.error("Caught error tying to setup test:", e); | 902 console.error("Caught error tying to setup test:", e); |
| 905 } | 903 } |
| 906 } | 904 } |
| 907 }); | 905 }); |
| 908 }); | 906 }); |
| OLD | NEW |