Skip to content

Commit 4572428

Browse files
authored
Merge pull request #1814 from hermit-os/select
feat(xtask): add support for http_server_select
2 parents 260c073 + 891880c commit 4572428

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

xtask/src/ci/qemu.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,9 @@ impl Qemu {
125125
let guest_ip = self.guest_ip();
126126

127127
match image_name {
128-
"axum-example" | "http_server" | "http_server_poll" => test_http_server(guest_ip)?,
128+
"axum-example" | "http_server" | "http_server_poll" | "http_server_select" => {
129+
test_http_server(guest_ip)?
130+
}
129131
"httpd" => test_httpd(guest_ip)?,
130132
"testudp" => test_testudp(guest_ip)?,
131133
"miotcp" => test_miotcp(guest_ip)?,
@@ -136,7 +138,7 @@ impl Qemu {
136138

137139
if matches!(
138140
image_name,
139-
"axum-example" | "http_server" | "http_server_poll"
141+
"axum-example" | "http_server" | "http_server_poll" | "http_server_select"
140142
) || self.devices.contains(&Device::CadenceGem)
141143
// sifive_u, on which we test CadenceGem, does not support software shutdowns, so we have to kill the machine ourselves.
142144
{

0 commit comments

Comments
 (0)