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:
Elliott Hughes 2018-05-02 10:47:00 -07:00
parent 78393951de
commit 89722709b4
1 changed files with 3 additions and 1 deletions

View File

@ -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:)");
}