commit ae14dd2c6b561f93279f6a1d2b4505b73f7094a8
parent c98f90b4d010c776e300bf56d0108d65f9501c8a
Author: Zack Newman <zack@philomathiclife.com>
Date: Tue, 27 Jan 2026 14:17:13 -0700
fix unused crate dep in integration tests for openbsd
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/tests/parse_1_93_0.rs b/tests/parse_1_93_0.rs
@@ -1,5 +1,7 @@
//! Verifies the app correctly parses `rustc -Whelp` output piped to it.
#![cfg(all(test, not(target_pointer_width = "16")))]
+#[cfg(target_os = "openbsd")]
+use priv_sep as _;
use std::{
env,
io::Write as _,