diff options
Diffstat (limited to 'test_util/src')
-rw-r--r-- | test_util/src/servers/mod.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test_util/src/servers/mod.rs b/test_util/src/servers/mod.rs index d4c40f4fc..a66c84058 100644 --- a/test_util/src/servers/mod.rs +++ b/test_util/src/servers/mod.rs @@ -1056,7 +1056,15 @@ async fn main_server( .unwrap(), ); } - (&Method::GET, "/canary-latest.txt") => { + ( + &Method::GET, + "/canary-latest.txt" + | "/canary-x86_64-apple-darwin-latest.txt" + | "/canary-aarch64-apple-darwin-latest.txt" + | "/canary-x86_64-unknown-linux-latest.txt" + | "/canary-aarch64-unknown-linux-latest.txt" + | "/canary-x86_64-pc-windows-msvc-latest.txt", + ) => { return Ok( Response::builder() .status(StatusCode::OK) |