1
Fork 0

tests: slightly cleanup tests/ui/command/command-pre-exec.rs

- Remove already stabilized feature gate and
  `#![allow(stable_features)]`.
- Convert `ignore-windows` to `only-unix`.
- Convert `ignore-*` to `needs-subprocess`.
This commit is contained in:
许杰友 Jieyou Xu (Joe) 2025-01-23 15:39:44 +08:00
parent c7f9c30e33
commit 5f63f2dac9

View file

@ -1,11 +1,9 @@
//@ run-pass
#![allow(stable_features)]
//@ ignore-windows - this is a unix-specific test
//@ ignore-wasm32 no processes
//@ ignore-sgx no processes
//@ only-unix (this is a unix-specific test)
//@ needs-subprocess
//@ ignore-fuchsia no execvp syscall
#![feature(process_exec, rustc_private)]
#![feature(rustc_private)]
extern crate libc;