summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-prod (mdb)2018-05-02 16:41:43 -0500
committerGerrit Code Review2018-05-02 16:41:43 -0500
commitdbc4aa1dedf482050229e7dd3f44e51230136c92 (patch)
tree0998c0489299d36e1a1327b922d53800b906e5a2
parent78393951de05ef60456f23d959400125684d7f7a (diff)
parent89722709b4e957eda67a8faa6dbe6ff2e05486d1 (diff)
downloadplatform-system-core-dbc4aa1dedf482050229e7dd3f44e51230136c92.tar.gz
platform-system-core-dbc4aa1dedf482050229e7dd3f44e51230136c92.tar.xz
platform-system-core-dbc4aa1dedf482050229e7dd3f44e51230136c92.zip
Merge "Fix a debuggerd test expectation."
-rw-r--r--debuggerd/debuggerd_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/debuggerd/debuggerd_test.cpp b/debuggerd/debuggerd_test.cpp
index e410be910..9b64be70f 100644
--- a/debuggerd/debuggerd_test.cpp
+++ b/debuggerd/debuggerd_test.cpp
@@ -346,7 +346,9 @@ TEST_F(CrasherTest, signal) {
346 346
347 std::string result; 347 std::string result;
348 ConsumeFd(std::move(output_fd), &result); 348 ConsumeFd(std::move(output_fd), &result);
349 ASSERT_MATCH(result, R"(signal 11 \(SIGSEGV\), code 0 \(SI_USER\), fault addr --------)"); 349 ASSERT_MATCH(
350 result,
351 R"(signal 11 \(SIGSEGV\), code 0 \(SI_USER from pid \d+, uid \d+\), fault addr --------)");
350 ASSERT_MATCH(result, R"(backtrace:)"); 352 ASSERT_MATCH(result, R"(backtrace:)");
351} 353}
352 354