mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 15:32:10 +08:00
posix: Correctly show the expected exit status in multiprocess tests
When reason is mistaken for reason_, things can get unreasonable. Change-Id: I3deff343fd6836eba3111ba7551174591c2bf5bc Reviewed-on: https://chromium-review.googlesource.com/354101 Reviewed-by: Robert Sesek <rsesek@chromium.org>
This commit is contained in:
parent
6dbf952678
commit
89835b30f8
@ -98,12 +98,12 @@ void Multiprocess::Run() {
|
||||
if (WIFEXITED(status)) {
|
||||
reason = kTerminationNormal;
|
||||
code = WEXITSTATUS(status);
|
||||
message = base::StringPrintf("Child exited with code %d, expected", code);
|
||||
message = base::StringPrintf("Child exited with code %d", code);
|
||||
} else if (WIFSIGNALED(status)) {
|
||||
reason = kTerminationSignal;
|
||||
code = WTERMSIG(status);
|
||||
message =
|
||||
base::StringPrintf("Child terminated by signal %d (%s)%s, expected",
|
||||
base::StringPrintf("Child terminated by signal %d (%s)%s",
|
||||
code,
|
||||
strsignal(code),
|
||||
WCOREDUMP(status) ? " (core dumped)" : "");
|
||||
@ -112,9 +112,11 @@ void Multiprocess::Run() {
|
||||
}
|
||||
|
||||
if (reason_ == kTerminationNormal) {
|
||||
message += base::StringPrintf(" exit with code %d", code_);
|
||||
} else if (reason == kTerminationSignal) {
|
||||
message += base::StringPrintf(" termination by signal %d", code_);
|
||||
message += base::StringPrintf(", expected exit with code %d", code_);
|
||||
} else if (reason_ == kTerminationSignal) {
|
||||
message += base::StringPrintf(", expected termination by signal %d (%s)",
|
||||
code_,
|
||||
strsignal(code_));
|
||||
}
|
||||
|
||||
if (reason != reason_ || code != code_) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user