File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -64,14 +64,18 @@ fn http1_parallel_x10_req_10mb(b: &mut test::Bencher) {
64
64
}
65
65
66
66
#[ bench]
67
+ #[ ignore]
67
68
fn http2_get ( b : & mut test:: Bencher ) {
69
+ // FIXME: re-implement tests when `h2` upgrades to `async/await`
68
70
opts ( )
69
71
. http2 ( )
70
72
. bench ( b)
71
73
}
72
74
73
75
#[ bench]
76
+ #[ ignore]
74
77
fn http2_post ( b : & mut test:: Bencher ) {
78
+ // FIXME: re-implement tests when `h2` upgrades to `async/await`
75
79
opts ( )
76
80
. http2 ( )
77
81
. method ( Method :: POST )
@@ -80,7 +84,9 @@ fn http2_post(b: &mut test::Bencher) {
80
84
}
81
85
82
86
#[ bench]
87
+ #[ ignore]
83
88
fn http2_req_100kb ( b : & mut test:: Bencher ) {
89
+ // FIXME: re-implement tests when `h2` upgrades to `async/await`
84
90
let body = & [ b'x' ; 1024 * 100 ] ;
85
91
opts ( )
86
92
. http2 ( )
@@ -90,15 +96,19 @@ fn http2_req_100kb(b: &mut test::Bencher) {
90
96
}
91
97
92
98
#[ bench]
99
+ #[ ignore]
93
100
fn http2_parallel_x10_empty ( b : & mut test:: Bencher ) {
101
+ // FIXME: re-implement tests when `h2` upgrades to `async/await`
94
102
opts ( )
95
103
. http2 ( )
96
104
. parallel ( 10 )
97
105
. bench ( b)
98
106
}
99
107
100
108
#[ bench]
109
+ #[ ignore]
101
110
fn http2_parallel_x10_req_10mb ( b : & mut test:: Bencher ) {
111
+ // FIXME: re-implement tests when `h2` upgrades to `async/await`
102
112
let body = & [ b'x' ; 1024 * 1024 * 10 ] ;
103
113
opts ( )
104
114
. http2 ( )
You can’t perform that action at this time.
0 commit comments