From c1bf33d9b651b2ec5cf125260bc028eee9e79b91 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 21 Mar 2025 14:22:40 +0100 Subject: [PATCH] lslocks: add missing #[cfg(target_os = "linux")] --- tests/by-util/test_lslocks.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/by-util/test_lslocks.rs b/tests/by-util/test_lslocks.rs index b56dcf8..3cd9dcd 100644 --- a/tests/by-util/test_lslocks.rs +++ b/tests/by-util/test_lslocks.rs @@ -3,6 +3,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. +#[cfg(target_os = "linux")] use crate::common::util::TestScenario; #[test]