From 2b6764a625c394721d9e04683f30d37d44a2e178 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Mon, 2 Nov 2020 15:59:52 -0800 Subject: [PATCH] Fix the expected tagged_addr_ctrl in a test. It turns out that I had originally written the test with a local patch applied that forces TCF0 to SYNC, so it was testing for the wrong tagged_addr_ctrl value. Fix it. Bug: 135772972 Change-Id: Ibb9b25e5f5635372ad5de7825c31d7264ff02590 --- debuggerd/debuggerd_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debuggerd/debuggerd_test.cpp b/debuggerd/debuggerd_test.cpp index 5ed9e57fa..5565e8b15 100644 --- a/debuggerd/debuggerd_test.cpp +++ b/debuggerd/debuggerd_test.cpp @@ -312,7 +312,7 @@ TEST_F(CrasherTest, smoke) { if (mte_supported()) { // Test that the default TAGGED_ADDR_CTRL value is set. - ASSERT_MATCH(result, R"(tagged_addr_ctrl: 000000000007fff3)"); + ASSERT_MATCH(result, R"(tagged_addr_ctrl: 000000000007fff5)"); } }