| 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 _isolate_helper = dart_library.import('dart/_isolate_helper'); | 8 let _isolate_helper = dart_library.import('dart/_isolate_helper'); |
| 9 _isolate_helper.startRootIsolate(function() {}, []); | 9 _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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'syncstar_yieldstar_test' | 63 'syncstar_yieldstar_test' |
| 64 ]); | 64 ]); |
| 65 }); | 65 }); |
| 66 | 66 |
| 67 dart_library.import('language/async_await_test').main(); | 67 dart_library.import('language/async_await_test').main(); |
| 68 | 68 |
| 69 suite('async', () => { | 69 suite('async', () => { |
| 70 dartLanguageTests([ | 70 dartLanguageTests([ |
| 71 'async_and_or_test', | 71 'async_and_or_test', |
| 72 'async_await_catch_regression_test', | 72 'async_await_catch_regression_test', |
| 73 // TODO(jmesserly): fix errors | 73 'async_backwards_compatibility_1_test', |
| 74 // 'async_backwards_compatibility_1_test', | |
| 75 'async_backwards_compatibility_2_test', | 74 'async_backwards_compatibility_2_test', |
| 76 'async_break_in_finally_test', | 75 'async_break_in_finally_test', |
| 77 // TODO(jmesserly): https://github.com/dart-lang/dev_compiler/issues/263 | 76 // TODO(jmesserly): https://github.com/dart-lang/dev_compiler/issues/263 |
| 78 // 'async_continue_label_test', | 77 // 'async_continue_label_test', |
| 79 'async_control_structures_test', | 78 'async_control_structures_test', |
| 80 'async_finally_rethrow_test', | 79 'async_finally_rethrow_test', |
| 81 // TODO(jmesserly): fix errors | |
| 82 // 'async_or_generator_return_type_stacktrace_test', | |
| 83 'async_regression_23058_test', | 80 'async_regression_23058_test', |
| 84 'async_rethrow_test', | 81 'async_rethrow_test', |
| 85 // TODO(jmesserly): fix errors | |
| 86 // 'async_return_types_test', | |
| 87 // TODO(jmesserly): https://github.com/dart-lang/dev_compiler/issues/294 | 82 // TODO(jmesserly): https://github.com/dart-lang/dev_compiler/issues/294 |
| 88 // 'async_switch_test', | 83 // 'async_switch_test', |
| 89 'async_test', | 84 'async_test', |
| 90 'async_this_bound_test', | 85 'async_this_bound_test', |
| 91 'async_throw_in_catch_test' | 86 'async_throw_in_catch_test' |
| 87 // By design, rejected statically by strong mode: |
| 88 // 'async_return_types_test', |
| 89 // 'async_or_generator_return_type_stacktrace_test', |
| 92 ]); | 90 ]); |
| 93 }); | 91 }); |
| 94 | 92 |
| 95 dart_library.import('language/async_star_test_none_multi').main(); | 93 dart_library.import('language/async_star_test_none_multi').main(); |
| 96 | 94 |
| 97 suite('async*', () => { | 95 suite('async*', () => { |
| 98 dartLanguageTests([ | 96 dartLanguageTests([ |
| 99 // TODO(jmesserly): figure out why this test is hanging. | 97 // TODO(jmesserly): figure out why this test is hanging. |
| 100 //'async_star_cancel_and_throw_in_finally_test', | 98 //'async_star_cancel_and_throw_in_finally_test', |
| 101 'async_star_regression_23116_test', | 99 'async_star_regression_23116_test', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 115 'export_main_override_test', | 113 'export_main_override_test', |
| 116 'export_main_test', | 114 'export_main_test', |
| 117 'export_test', | 115 'export_test', |
| 118 'local_export_test', | 116 'local_export_test', |
| 119 'reexport_core_test', | 117 'reexport_core_test', |
| 120 'top_level_entry_test' | 118 'top_level_entry_test' |
| 121 ]); | 119 ]); |
| 122 }); | 120 }); |
| 123 | 121 |
| 124 })(); | 122 })(); |
| OLD | NEW |