Fix a debuggerd test expectation.
70d8f28945
broke a test that was not
expecting to see the new detail about the signal's sender.
Bug: http://b/78594105
Test: ran tests
Change-Id: Idfa3a53b9e664308efdba560ffbb1401c1904530
This commit is contained in:
parent
78393951de
commit
89722709b4
|
@ -346,7 +346,9 @@ TEST_F(CrasherTest, signal) {
|
|||
|
||||
std::string result;
|
||||
ConsumeFd(std::move(output_fd), &result);
|
||||
ASSERT_MATCH(result, R"(signal 11 \(SIGSEGV\), code 0 \(SI_USER\), fault addr --------)");
|
||||
ASSERT_MATCH(
|
||||
result,
|
||||
R"(signal 11 \(SIGSEGV\), code 0 \(SI_USER from pid \d+, uid \d+\), fault addr --------)");
|
||||
ASSERT_MATCH(result, R"(backtrace:)");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue