From 9c3a06219adec4854df90423e87afdcd42c4a2ae Mon Sep 17 00:00:00 2001 From: arcnmx Date: Mon, 19 Oct 2015 00:36:28 -0400 Subject: [PATCH] Add missing #[test] attribute to test --- src/libstd/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 4e80fb2ceb09e..c01e2ff40f940 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -625,8 +625,8 @@ mod tests { drop(p.wait()); } - #[cfg(unix)] #[cfg(all(unix, not(target_os="android")))] + #[test] fn signal_reported_right() { use os::unix::process::ExitStatusExt;