diff options
author | Peter Collingbourne <pcc@google.com> | 2020-11-02 15:59:52 -0800 |
---|---|---|
committer | Peter Collingbourne <pcc@google.com> | 2020-11-02 16:00:08 -0800 |
commit | 2b6764a625c394721d9e04683f30d37d44a2e178 (patch) | |
tree | aa0939c4bedef28f8dac8c30623548b2a1444ad9 /debuggerd/debuggerd_test.cpp | |
parent | 14096bd924e79d07022e8c6d3db728bf8302fd40 (diff) |
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
Diffstat (limited to 'debuggerd/debuggerd_test.cpp')
-rw-r--r-- | debuggerd/debuggerd_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)"); } } |