Files
rust/tests/run-make/issue-107495-archive-permissions/rmake.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
539 B
Rust
Raw Normal View History

2024-03-19 10:04:32 +00:00
#[cfg(unix)]
use std::os::unix::fs::PermissionsExt;
use std::path::Path;
#[cfg(unix)]
use run_make_support::libc;
use run_make_support::{rfs, rustc};
2024-03-19 10:04:32 +00:00
fn main() {
#[cfg(unix)]
unsafe {
libc::umask(0o002);
}
rustc().crate_type("lib").arg("foo.rs").run();
verify(Path::new("libfoo.rlib"));
2024-03-19 10:04:32 +00:00
}
fn verify(path: &Path) {
let perm = rfs::metadata(path).permissions();
2024-03-19 10:04:32 +00:00
assert!(!perm.readonly());
// Check that the file is readable for everyone
#[cfg(unix)]
assert_eq!(perm.mode(), 0o100664);
}