Skip to content

Commit 0b857c5

Browse files
committed
Fix to D140567
1 parent ac17b6b commit 0b857c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ TEST(MemoryMapping, LoadedModuleArchAndUUID) {
6969
if (SANITIZER_WORDSIZE == 32) {
7070
EXPECT_EQ(arch, kModuleArchI386);
7171
} else if (SANITIZER_WORDSIZE == 64) {
72-
EXPECT_TRUE(arch == kModuleArchX86_64 || arch == kModuleArchX86_64H || kModuleArchARM64);
72+
EXPECT_TRUE(arch == kModuleArchX86_64 || arch == kModuleArchX86_64H || arch == kModuleArchARM64);
7373
}
7474
const u8 *uuid = modules[i].uuid();
7575
u8 null_uuid[kModuleUUIDSize] = {0};

0 commit comments

Comments
 (0)