| 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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 'generics_test_none_multi': fail, | 592 'generics_test_none_multi': fail, |
| 593 'globalized_closures2_test_00_multi': fail, | 593 'globalized_closures2_test_00_multi': fail, |
| 594 'globalized_closures2_test_none_multi': fail, | 594 'globalized_closures2_test_none_multi': fail, |
| 595 'globalized_closures_test_00_multi': fail, | 595 'globalized_closures_test_00_multi': fail, |
| 596 'globalized_closures_test_none_multi': fail, | 596 'globalized_closures_test_none_multi': fail, |
| 597 'hierarchy_invariants_test': fail, | 597 'hierarchy_invariants_test': fail, |
| 598 'hot_get_field_test': fail, | 598 'hot_get_field_test': fail, |
| 599 'hot_set_field_test': fail, | 599 'hot_set_field_test': fail, |
| 600 'inherited_metadata_test': fail, | 600 'inherited_metadata_test': fail, |
| 601 'instance_members_unimplemented_interface_test': fail, | 601 'instance_members_unimplemented_interface_test': fail, |
| 602 'instance_members_with_override_test': fail, // JsClassMirror.instanceMemb
ers unimplemented |
| 602 'instantiate_abstract_class_test': fail, | 603 'instantiate_abstract_class_test': fail, |
| 603 'intercepted_superclass_test': fail, | 604 'intercepted_superclass_test': fail, |
| 604 'invocation_fuzz_test_emptyarray_multi': fail, | 605 'invocation_fuzz_test_emptyarray_multi': fail, |
| 605 'invocation_fuzz_test_false_multi': fail, | 606 'invocation_fuzz_test_false_multi': fail, |
| 606 'invocation_fuzz_test_none_multi': fail, | 607 'invocation_fuzz_test_none_multi': fail, |
| 607 'invocation_fuzz_test_smi_multi': fail, | 608 'invocation_fuzz_test_smi_multi': fail, |
| 608 'invocation_fuzz_test_string_multi': fail, | 609 'invocation_fuzz_test_string_multi': fail, |
| 609 'invoke_call_on_closure_test': fail, | 610 'invoke_call_on_closure_test': fail, |
| 610 'invoke_closurization2_test': fail, | 611 'invoke_closurization2_test': fail, |
| 611 'invoke_closurization_test': fail, | 612 'invoke_closurization_test': fail, |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 | 845 |
| 845 for (let action of unittest_tests) { | 846 for (let action of unittest_tests) { |
| 846 try { | 847 try { |
| 847 action(); | 848 action(); |
| 848 } catch (e) { | 849 } catch (e) { |
| 849 console.error("Caught error tying to setup test:", e); | 850 console.error("Caught error tying to setup test:", e); |
| 850 } | 851 } |
| 851 } | 852 } |
| 852 }); | 853 }); |
| 853 }); | 854 }); |
| OLD | NEW |