diff --git a/compiler-rt/lib/scudo/standalone/tests/common_test.cpp b/compiler-rt/lib/scudo/standalone/tests/common_test.cpp index c53b6af316d2c..a322a01fb9391 100644 --- a/compiler-rt/lib/scudo/standalone/tests/common_test.cpp +++ b/compiler-rt/lib/scudo/standalone/tests/common_test.cpp @@ -69,7 +69,9 @@ TEST(ScudoCommonTest, Zeros) { unmap(P, Size, 0, &Data); } -#if SCUDO_LINUX +#if SCUDO_LINUX && !defined(__powerpc__) +// This test fails intermediately on PPC, which is why this test is disabled +// for now on this platform. TEST(ScudoCommonTest, GetRssFromBuffer) { constexpr int64_t AllocSize = 10000000; constexpr int64_t Error = 3000000;