Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/tools/remote-test-client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,9 @@ fn run(support_lib_count: usize, exe: String, all_args: Vec<String>) {
std::process::exit(code);
} else {
println!("died due to signal {}", code);
std::process::exit(3);
// Behave like bash and other tools and exit with 128 + the signal
// number. That way we can avoid special case code in other places.
std::process::exit(128 + code);
}
}

Expand Down
Loading