From 281b0501f622601251972a012c9405aa80726471 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 22 Aug 2023 19:43:00 +0100 Subject: [PATCH] fixup! std: unix process: Test exit statuses / wait statuses --- library/std/src/sys/unix/process/process_common/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/sys/unix/process/process_common/tests.rs b/library/std/src/sys/unix/process/process_common/tests.rs index 082c564700f0..4e41efc90962 100644 --- a/library/std/src/sys/unix/process/process_common/tests.rs +++ b/library/std/src/sys/unix/process/process_common/tests.rs @@ -175,7 +175,7 @@ fn unix_exit_statuses() { use crate::process::*; for exit_code in 0..=0xff { - // TODO impl From for ExitStatus and then test that here too; + // FIXME impl From for ExitStatus and then test that here too; // the two ExitStatus values should be the same let raw_wait_status = exit_code << 8; let exit_status = ExitStatus::from_raw(raw_wait_status);