From 1e3e2a1cf58784f93cc7c70746246d3cc03bd0fa Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Thu, 14 Dec 2023 15:04:26 -0800 Subject: [PATCH] [test][hwasan] Update test expectation for LAM We cat run LAM tests on QEMU. --- compiler-rt/test/hwasan/TestCases/tag-ptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/hwasan/TestCases/tag-ptr.cpp b/compiler-rt/test/hwasan/TestCases/tag-ptr.cpp index 2f00e7913bb15..87a07e311b17e 100644 --- a/compiler-rt/test/hwasan/TestCases/tag-ptr.cpp +++ b/compiler-rt/test/hwasan/TestCases/tag-ptr.cpp @@ -17,7 +17,7 @@ int main() { assert(__hwasan_get_tag_from_pointer(ptr) == i); } #ifdef __x86_64__ - assert(ptrs.size() == 8); + assert(ptrs.size() == 8 || ptrs.size() == 64); #else assert(ptrs.size() == 256); #endif