ouch/tests/landlock.rs
2025-06-28 20:04:30 +02:00

9 lines
191 B
Rust

#[test]
fn test_landlock_restriction() {
if !cfg!(target_os = "linux") {
eprintln!("Skipping Landlock test: not running on Linux.");
return;
}
// TODO: Add test
}