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 | 10 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 dartLanguageTests([ | 61 dartLanguageTests([ |
62 // TODO(jmesserly): figure out why this test is hanging. | 62 // TODO(jmesserly): figure out why this test is hanging. |
63 //'async_star_cancel_and_throw_in_finally_test', | 63 //'async_star_cancel_and_throw_in_finally_test', |
64 'async_star_regression_23116_test', | 64 'async_star_regression_23116_test', |
65 'asyncstar_concat_test', | 65 'asyncstar_concat_test', |
66 'asyncstar_throw_in_catch_test', | 66 'asyncstar_throw_in_catch_test', |
67 'asyncstar_yield_test', | 67 'asyncstar_yield_test', |
68 'asyncstar_yieldstar_test' | 68 'asyncstar_yieldstar_test' |
69 ]); | 69 ]); |
70 }); | 70 }); |
| 71 |
| 72 suite('export', () => { |
| 73 dartLanguageTests([ |
| 74 'duplicate_export_test', |
| 75 'export_cyclic_test', |
| 76 'export_double_same_main_test', |
| 77 'export_main_override_test', |
| 78 'export_main_test', |
| 79 'export_test', |
| 80 'local_export_test', |
| 81 'reexport_core_test', |
| 82 'top_level_entry_test' |
| 83 ]); |
| 84 }); |
| 85 |
71 })(); | 86 })(); |
OLD | NEW |