| 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 (function() { | 5 (function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 let dart_sdk = dart_library.import('dart_sdk'); | 8 let dart_sdk = dart_library.import('dart_sdk'); |
| 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); | 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); |
| 10 let async_helper = dart_library.import('async_helper').async_helper; | 10 let async_helper = dart_library.import('async_helper').async_helper; |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 'htmloptionscollection_test': ['unittest', 'skip', 'fail'], | 556 'htmloptionscollection_test': ['unittest', 'skip', 'fail'], |
| 557 'indexeddb_1_test': ['unittest', 'skip', 'fail'], | 557 'indexeddb_1_test': ['unittest', 'skip', 'fail'], |
| 558 'indexeddb_2_test': ['unittest', 'skip', 'fail'], | 558 'indexeddb_2_test': ['unittest', 'skip', 'fail'], |
| 559 'indexeddb_3_test': ['unittest', 'skip', 'fail'], | 559 'indexeddb_3_test': ['unittest', 'skip', 'fail'], |
| 560 'indexeddb_4_test': ['unittest', 'skip', 'fail'], | 560 'indexeddb_4_test': ['unittest', 'skip', 'fail'], |
| 561 'indexeddb_5_test': ['unittest', 'skip', 'fail'], | 561 'indexeddb_5_test': ['unittest', 'skip', 'fail'], |
| 562 'input_element_test': ['unittest', 'skip', 'fail'], | 562 'input_element_test': ['unittest', 'skip', 'fail'], |
| 563 'instance_of_test': ['unittest', 'skip', 'fail'], | 563 'instance_of_test': ['unittest', 'skip', 'fail'], |
| 564 'interactive_test': ['unittest', 'skip', 'fail'], | 564 'interactive_test': ['unittest', 'skip', 'fail'], |
| 565 'isolates_test': ['unittest', 'skip', 'fail'], | 565 'isolates_test': ['unittest', 'skip', 'fail'], |
| 566 'js_function_getter_test': ['unittest', 'skip', 'fail'], | 566 'js_function_getter_test': 'unittest', |
| 567 'js_function_getter_trust_types_test': ['unittest', 'skip', 'fail'], | 567 'js_function_getter_trust_types_test': ['unittest', 'skip', 'fail'], |
| 568 'js_interop_1_test': ['unittest', 'skip', 'fail'], | 568 'js_interop_1_test': ['unittest', 'skip', 'fail'], |
| 569 'js_test': ['unittest', 'skip', 'fail'], | 569 'js_test': ['unittest', 'skip', 'fail'], |
| 570 'js_typed_interop_anonymous2_exp_test': 'unittest', | 570 'js_typed_interop_anonymous2_exp_test': 'unittest', |
| 571 'js_typed_interop_anonymous2_test': 'unittest', | 571 'js_typed_interop_anonymous2_test': 'unittest', |
| 572 'js_typed_interop_anonymous_exp_test': 'unittest', | 572 'js_typed_interop_anonymous_exp_test': 'unittest', |
| 573 'js_typed_interop_anonymous_test': 'unittest', | 573 'js_typed_interop_anonymous_test': 'unittest', |
| 574 'js_typed_interop_anonymous_unreachable_exp_test': 'unittest', | 574 'js_typed_interop_anonymous_unreachable_exp_test': 'unittest', |
| 575 'js_typed_interop_anonymous_unreachable_test': 'unittest', | 575 'js_typed_interop_anonymous_unreachable_test': 'unittest', |
| 576 'js_typed_interop_default_arg_test': ['unittest', 'skip', 'fail'], | 576 'js_typed_interop_default_arg_test': ['unittest', 'skip', 'fail'], |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 | 812 |
| 813 for (let action of unittest_tests) { | 813 for (let action of unittest_tests) { |
| 814 try { | 814 try { |
| 815 action(); | 815 action(); |
| 816 } catch (e) { | 816 } catch (e) { |
| 817 console.error("Caught error tying to setup test:", e); | 817 console.error("Caught error tying to setup test:", e); |
| 818 } | 818 } |
| 819 } | 819 } |
| 820 }); | 820 }); |
| 821 })(); | 821 })(); |
| OLD | NEW |