-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
C-bugCategory: bugCategory: bugS-needs-infoStatus: Needs more info, such as a reproduction or more background for a feature request.Status: Needs more info, such as a reproduction or more background for a feature request.
Description
Hello!
I tried building rust 1.73.0 and ran its test suite, using GNU Guix.
I expected to see this happen: no failure in test suite
Instead, this happened: registry_auth::token_not_logged
test failed
Meta
rustc --version --verbose
:
1.73.0
Test output
failures:
---- registry_auth::token_not_logged stdout ----
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/index/config.json",
query: None,
fragment: None,
},
method: "get",
authorization: None,
if_modified_since: None,
if_none_match: None,
}
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/index/config.json",
query: None,
fragment: None,
},
method: "get",
authorization: Some(
"a-unique_token",
),
if_modified_since: None,
if_none_match: None,
}
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/index/config.json",
query: None,
fragment: None,
},
method: "get",
authorization: Some(
"a-unique_token",
),
if_modified_since: None,
if_none_match: None,
}
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/index/3/b/bar",
query: None,
fragment: None,
},
method: "get",
authorization: Some(
"a-unique_token",
),
if_modified_since: None,
if_none_match: None,
}
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/dl/bar/1.0.0/download",
query: None,
fragment: None,
},
method: "get",
authorization: Some(
"a-unique_token",
),
if_modified_since: None,
if_none_match: None,
}
/tmp/guix-build-rust-1.73.0.drv-0/rustc-1.73.0-src/build/x86_64-unknown-linux-gnu/stage1-tools/x86_64-unknown-linux-gnu/tmp/cit/t2232/dl/bar/1.0.0/download
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/api/v1/crates/new",
query: None,
fragment: None,
},
method: "put",
authorization: Some(
"a-unique_token",
),
if_modified_since: None,
if_none_match: None,
}
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/index/config.json",
query: None,
fragment: None,
},
method: "get",
authorization: Some(
"a-unique_token",
),
if_modified_since: None,
if_none_match: None,
}
req: Request {
url: Url {
scheme: "http",
cannot_be_a_base: false,
username: "",
password: None,
host: Some(
Ipv4(
127.0.0.1,
),
),
port: Some(
44399,
),
path: "/index/3/f/foo",
query: None,
fragment: None,
},
method: "get",
authorization: Some(
"a-unique_token",
),
if_modified_since: None,
if_none_match: None,
}
thread 'registry_auth::token_not_logged' panicked at tests/testsuite/registry_auth.rs:498:5:
assertion `left == right` failed
left: 8
right: 7
failures:
registry_auth::token_not_logged
test result: FAILED. 2801 passed; 1 failed; 198 ignored; 0 measured; 0 filtered out; finished in 71.12s
error: test failed, to rerun pass `--test testsuite`
Metadata
Metadata
Assignees
Labels
C-bugCategory: bugCategory: bugS-needs-infoStatus: Needs more info, such as a reproduction or more background for a feature request.Status: Needs more info, such as a reproduction or more background for a feature request.