@@ -75,12 +75,14 @@ async fn http_0_3_outbound_request_invalid_version() -> anyhow::Result<()> {
7575 run ( HTTP_0_3_OUTBOUND_REQUEST_INVALID_VERSION_COMPONENT , & server) . await
7676}
7777
78+ #[ cfg_attr( target_arch = "riscv64" , ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105" ) ]
7879#[ test_log:: test( tokio:: test( flavor = "multi_thread" ) ) ]
7980async fn http_0_3_outbound_request_invalid_header ( ) -> anyhow:: Result < ( ) > {
8081 let server = Server :: http2 ( 1 ) ?;
8182 run ( HTTP_0_3_OUTBOUND_REQUEST_INVALID_HEADER_COMPONENT , & server) . await
8283}
8384
85+ #[ cfg_attr( target_arch = "riscv64" , ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105" ) ]
8486#[ test_log:: test( tokio:: test( flavor = "multi_thread" ) ) ]
8587async fn http_0_3_outbound_request_unknown_method ( ) -> anyhow:: Result < ( ) > {
8688 let server = Server :: http1 ( 1 ) ?;
@@ -97,6 +99,7 @@ async fn http_0_3_outbound_request_unsupported_scheme() -> anyhow::Result<()> {
9799 . await
98100}
99101
102+ #[ cfg_attr( target_arch = "riscv64" , ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105" ) ]
100103#[ test_log:: test( tokio:: test( flavor = "multi_thread" ) ) ]
101104async fn http_0_3_outbound_request_invalid_port ( ) -> anyhow:: Result < ( ) > {
102105 let server = Server :: http1 ( 1 ) ?;
@@ -109,6 +112,7 @@ async fn http_0_3_outbound_request_invalid_dnsname() -> anyhow::Result<()> {
109112 run ( HTTP_0_3_OUTBOUND_REQUEST_INVALID_DNSNAME_COMPONENT , & server) . await
110113}
111114
115+ #[ cfg_attr( target_arch = "riscv64" , ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105" ) ]
112116#[ test_log:: test( tokio:: test( flavor = "multi_thread" ) ) ]
113117async fn http_0_3_outbound_request_response_build ( ) -> anyhow:: Result < ( ) > {
114118 let server = Server :: http1 ( 1 ) ?;
@@ -121,6 +125,7 @@ async fn http_0_3_outbound_request_content_length() -> anyhow::Result<()> {
121125 run ( HTTP_0_3_OUTBOUND_REQUEST_CONTENT_LENGTH_COMPONENT , & server) . await
122126}
123127
128+ #[ cfg_attr( target_arch = "riscv64" , ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105" ) ]
124129#[ test_log:: test( tokio:: test( flavor = "multi_thread" ) ) ]
125130async fn http_0_3_outbound_request_missing_path_and_query ( ) -> anyhow:: Result < ( ) > {
126131 let server = Server :: http1 ( 1 ) ?;
0 commit comments