From 981019138da55cf10cc73ac9f18d09adb1d77116 Mon Sep 17 00:00:00 2001 From: Fuad Ismail Date: Tue, 7 Jan 2025 15:31:49 +0700 Subject: [PATCH] tests/csplit: ignore IRWXU from cspell check --- tests/by-util/test_csplit.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/by-util/test_csplit.rs b/tests/by-util/test_csplit.rs index bb714509e..0b2353a50 100644 --- a/tests/by-util/test_csplit.rs +++ b/tests/by-util/test_csplit.rs @@ -1441,6 +1441,7 @@ fn test_named_pipe_input_file() { #[cfg(unix)] fn create_named_pipe_with_writer(path: &str, data: &str) -> std::process::Child { + // cSpell:ignore IRWXU nix::unistd::mkfifo(path, nix::sys::stat::Mode::S_IRWXU).unwrap(); std::process::Command::new("sh") .arg("-c")