Skip to content

Commit 030aeec

Browse files
committed
Fix nightly failures from auth
Follow-up to MaterializeInc#32131 Failures seen in https://buildkite.com/materialize/nightly/builds/11825
1 parent f69e28f commit 030aeec

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/auth/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ openssl = { version = "0.10.71", features = ["vendored"] }
2121

2222
[features]
2323
default = ["workspace-hack"]
24+
25+
[package.metadata.cargo-udeps.ignore]
26+
normal = ["workspace-hack"]

src/auth/src/hash.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ mod tests {
214214
use super::*;
215215

216216
#[mz_ore::test]
217+
#[cfg_attr(miri, ignore)] // unsupported operation: can't call foreign function `OPENSSL_init_ssl` on OS `linux`
217218
fn test_hash_password() {
218219
let password = "password".to_string();
219220
let hashed_password = hash_password(&password.into()).expect("Failed to hash password");
@@ -223,6 +224,7 @@ mod tests {
223224
}
224225

225226
#[mz_ore::test]
227+
#[cfg_attr(miri, ignore)] // unsupported operation: can't call foreign function `OPENSSL_init_ssl` on OS `linux`
226228
fn test_scram256_hash() {
227229
let password = "password".into();
228230
let scram_hash = scram256_hash(&password).expect("Failed to hash password");

0 commit comments

Comments
 (0)