Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89722709 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Fix a debuggerd test expectation.

70d8f289 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
parent 78393951
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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:)");
}