cargo-auditable: disable test_bare_linker (#536130)

This commit is contained in:
nixpkgs-ci[bot] 2026-06-28 00:17:35 +00:00 committed by GitHub
commit adc849e346
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,20 @@ lib.extendMkDerivation {
# https://github.com/rust-secure-code/cargo-auditable/issues/235
"--skip=test_proc_macro"
"--skip=test_self_hosting"
];
]
# TODO: Clean up on `staging`.
++
lib.optionals
(
stdenv.hostPlatform.isMusl
|| stdenv.hostPlatform.isAarch32
|| stdenv.hostPlatform.isDarwin
|| stdenv.hostPlatform.isMsvc
)
[
# Expects `linker = "rust-lld"` to work.
"--skip=test_bare_linker"
];
postInstall = ''
installManPage cargo-auditable/cargo-auditable.1