Skip to content

Commit 635a06b

Browse files
committed
tests: cleanup tests/ui/process/process-exit.rs
- Remove unnecessary `#![allow(unused_imports)]`. - Replace `ignore-*` with `needs-subprocess`.
1 parent 02c003b commit 635a06b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/ui/process/process-exit.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
//@ run-pass
2-
#![allow(unused_imports)]
3-
//@ ignore-wasm32 no processes
4-
//@ ignore-sgx no processes
2+
//@ needs-subprocess
53

64
use std::env;
7-
use std::process::{self, Command, Stdio};
5+
use std::process::{self, Command};
86

97
fn main() {
108
let args: Vec<String> = env::args().collect();

0 commit comments

Comments
 (0)