Merge "Fix a debuggerd test expectation." am: dbc4aa1ded

am: d724371524

Change-Id: I8eb792a4c7be9aba16314c033132cc06ab5ca52c
This commit is contained in:
android-build-prod (mdb) 2018-05-02 14:56:10 -07:00 committed by android-build-merger
commit 7d5a32e572
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:)");
}