From 87bd62f1b71c32fa107c1ac6c2c9ebdfa90da7b2 Mon Sep 17 00:00:00 2001 From: Rain Date: Tue, 9 Jan 2024 12:12:32 -0800 Subject: [PATCH] [nextest-runner] silence warning on illumos illumos has pipe2 so we don't need this `set_cloexec` method there. --- nextest-runner/src/test_command/unix.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/nextest-runner/src/test_command/unix.rs b/nextest-runner/src/test_command/unix.rs index 2015bb0912f..47423ced8aa 100644 --- a/nextest-runner/src/test_command/unix.rs +++ b/nextest-runner/src/test_command/unix.rs @@ -31,7 +31,6 @@ pub(super) fn setup_io(cmd: &mut std::process::Command) -> io::Result { if #[cfg(not(any( target_env = "newlib", target_os = "solaris", - target_os = "illumos", target_os = "emscripten", target_os = "fuchsia", target_os = "l4re", @@ -52,7 +51,6 @@ pub(super) fn setup_io(cmd: &mut std::process::Command) -> io::Result { not(any(target_os = "espidf", target_os = "horizon", target_os = "vita")) ), target_os = "solaris", - target_os = "illumos", target_os = "emscripten", target_os = "fuchsia", target_os = "l4re",