Skip to content

Commit 281b050

Browse files
committed
fixup! std: unix process: Test exit statuses / wait statuses
1 parent 2727f82 commit 281b050

File tree

1 file changed

+1
-1
lines changed
  • library/std/src/sys/unix/process/process_common

1 file changed

+1
-1
lines changed

library/std/src/sys/unix/process/process_common/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ fn unix_exit_statuses() {
175175
use crate::process::*;
176176

177177
for exit_code in 0..=0xff {
178-
// TODO impl From<ExitCode> for ExitStatus and then test that here too;
178+
// FIXME impl From<ExitCode> for ExitStatus and then test that here too;
179179
// the two ExitStatus values should be the same
180180
let raw_wait_status = exit_code << 8;
181181
let exit_status = ExitStatus::from_raw(raw_wait_status);

0 commit comments

Comments
 (0)