@@ -17,44 +17,36 @@ use tokio::runtime::{
1717fn runtime_default_factory ( ) {
1818 let ct = runtime:: Builder :: new_current_thread ( ) ;
1919 let mt = runtime:: Builder :: new_multi_thread ( ) ;
20- let mta = runtime:: Builder :: new_multi_thread_alt ( ) ;
2120
2221 run_runtime_default_factory ( ct) ;
2322 run_runtime_default_factory ( mt) ;
24- run_runtime_default_factory ( mta) ;
2523}
2624
2725#[ test]
2826fn parent_child_chaining ( ) {
2927 let ct = runtime:: Builder :: new_current_thread ( ) ;
3028 let mt = runtime:: Builder :: new_multi_thread ( ) ;
31- let mta = runtime:: Builder :: new_multi_thread_alt ( ) ;
3229
3330 run_parent_child_chaining ( ct) ;
3431 run_parent_child_chaining ( mt) ;
35- run_parent_child_chaining ( mta) ;
3632}
3733
3834#[ test]
3935fn before_poll ( ) {
4036 let ct = runtime:: Builder :: new_current_thread ( ) ;
4137 let mt = runtime:: Builder :: new_multi_thread ( ) ;
42- let mta = runtime:: Builder :: new_multi_thread_alt ( ) ;
4338
4439 run_before_poll ( ct) ;
4540 run_before_poll ( mt) ;
46- run_before_poll ( mta) ;
4741}
4842
4943#[ test]
5044fn after_poll ( ) {
5145 let ct = runtime:: Builder :: new_current_thread ( ) ;
5246 let mt = runtime:: Builder :: new_multi_thread ( ) ;
53- let mta = runtime:: Builder :: new_multi_thread_alt ( ) ;
5447
5548 run_after_poll ( ct) ;
5649 run_after_poll ( mt) ;
57- run_after_poll ( mta) ;
5850}
5951
6052#[ test]
@@ -68,22 +60,18 @@ fn terminate() {
6860fn hook_switching ( ) {
6961 let ct = runtime:: Builder :: new_current_thread ( ) ;
7062 let mt = runtime:: Builder :: new_multi_thread ( ) ;
71- let mta = runtime:: Builder :: new_multi_thread_alt ( ) ;
7263
7364 run_hook_switching ( ct) ;
7465 run_hook_switching ( mt) ;
75- run_hook_switching ( mta) ;
7666}
7767
7868#[ test]
7969fn override_hooks ( ) {
8070 let ct = runtime:: Builder :: new_current_thread ( ) ;
8171 let mt = runtime:: Builder :: new_multi_thread ( ) ;
82- let mta = runtime:: Builder :: new_multi_thread_alt ( ) ;
8372
8473 run_override ( ct) ;
8574 run_override ( mt) ;
86- run_override ( mta) ;
8775}
8876
8977fn run_runtime_default_factory ( mut builder : runtime:: Builder ) {
0 commit comments