summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mohamad Mahmoud <mohamadmahmoud@google.com> 2025-02-13 12:29:17 +0000
committer Mohamad Mahmoud <mohamadmahmoud@google.com> 2025-02-13 09:51:10 -0800
commit506532f701bd11fb54dacd8681539f8028074ba2 (patch)
treeab79050fc4a1ff11dd5f8a48451ee5d25483de8a
parent4bcbbe50ab5c85c5b988fe8bcf46895c850cc4ca (diff)
Account for the new debug store footer in libartpalette tests
Bug: 396234530 Test: atest Change-Id: I7c957b92963c96e6425900e259a82a15415704ca
-rw-r--r--libartpalette/apex/palette_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libartpalette/apex/palette_test.cc b/libartpalette/apex/palette_test.cc
index 47eec51df9..744d6a8d30 100644
--- a/libartpalette/apex/palette_test.cc
+++ b/libartpalette/apex/palette_test.cc
@@ -177,7 +177,7 @@ TEST_F(PaletteClientTest, DebugStore) {
EXPECT_TRUE(len < result.size());
const char* start = "1,0,";
- const char* end = "::";
+ const char* end = "::;;";
EXPECT_TRUE(len > strlen(start) + strlen(end));
EXPECT_EQ(strncmp(result.data() + len - strlen(end), end, strlen(end)), 0);
#endif