mirror of
https://github.com/ouch-org/ouch.git
synced 2025-07-19 16:10:53 +00:00
9 lines
191 B
Rust
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
|
|
}
|