Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 5e8f880

Browse files
committed
ignore failing riscv64 tests
#105 Signed-off-by: Roman Volosatovs <rvolosatovs@riseup.net>
1 parent 9a4a0ae commit 5e8f880

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

crates/wasi-http/tests/all/p3/outgoing.rs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,20 @@ 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(
79+
target_arch = "riscv64",
80+
ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105"
81+
)]
7882
#[test_log::test(tokio::test(flavor = "multi_thread"))]
7983
async fn http_0_3_outbound_request_invalid_header() -> anyhow::Result<()> {
8084
let server = Server::http2(1)?;
8185
run(HTTP_0_3_OUTBOUND_REQUEST_INVALID_HEADER_COMPONENT, &server).await
8286
}
8387

88+
#[cfg_attr(
89+
target_arch = "riscv64",
90+
ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105"
91+
)]
8492
#[test_log::test(tokio::test(flavor = "multi_thread"))]
8593
async fn http_0_3_outbound_request_unknown_method() -> anyhow::Result<()> {
8694
let server = Server::http1(1)?;
@@ -97,6 +105,10 @@ async fn http_0_3_outbound_request_unsupported_scheme() -> anyhow::Result<()> {
97105
.await
98106
}
99107

108+
#[cfg_attr(
109+
target_arch = "riscv64",
110+
ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105"
111+
)]
100112
#[test_log::test(tokio::test(flavor = "multi_thread"))]
101113
async fn http_0_3_outbound_request_invalid_port() -> anyhow::Result<()> {
102114
let server = Server::http1(1)?;
@@ -109,6 +121,10 @@ async fn http_0_3_outbound_request_invalid_dnsname() -> anyhow::Result<()> {
109121
run(HTTP_0_3_OUTBOUND_REQUEST_INVALID_DNSNAME_COMPONENT, &server).await
110122
}
111123

124+
#[cfg_attr(
125+
target_arch = "riscv64",
126+
ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105"
127+
)]
112128
#[test_log::test(tokio::test(flavor = "multi_thread"))]
113129
async fn http_0_3_outbound_request_response_build() -> anyhow::Result<()> {
114130
let server = Server::http1(1)?;
@@ -121,6 +137,10 @@ async fn http_0_3_outbound_request_content_length() -> anyhow::Result<()> {
121137
run(HTTP_0_3_OUTBOUND_REQUEST_CONTENT_LENGTH_COMPONENT, &server).await
122138
}
123139

140+
#[cfg_attr(
141+
target_arch = "riscv64",
142+
ignore = "https://github.com/bytecodealliance/wasip3-prototyping/issues/105"
143+
)]
124144
#[test_log::test(tokio::test(flavor = "multi_thread"))]
125145
async fn http_0_3_outbound_request_missing_path_and_query() -> anyhow::Result<()> {
126146
let server = Server::http1(1)?;

0 commit comments

Comments
 (0)