[llvm] ba45ac6 - [CAS] Temporarily disable broken test
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 18 06:09:17 PDT 2025
Author: Nikita Popov
Date: 2025-08-18T15:09:08+02:00
New Revision: ba45ac61b6fe7a757a7ae27612261cd9ffdcb474
URL: https://github.com/llvm/llvm-project/commit/ba45ac61b6fe7a757a7ae27612261cd9ffdcb474
DIFF: https://github.com/llvm/llvm-project/commit/ba45ac61b6fe7a757a7ae27612261cd9ffdcb474.diff
LOG: [CAS] Temporarily disable broken test
This test hangs forever if executed with less than three cores
available, see:
https://github.com/llvm/llvm-project/pull/114096#issuecomment-3196698403
Added:
Modified:
llvm/unittests/CAS/ObjectStoreTest.cpp
Removed:
################################################################################
diff --git a/llvm/unittests/CAS/ObjectStoreTest.cpp b/llvm/unittests/CAS/ObjectStoreTest.cpp
index b3c408758a007..e84e30374c9aa 100644
--- a/llvm/unittests/CAS/ObjectStoreTest.cpp
+++ b/llvm/unittests/CAS/ObjectStoreTest.cpp
@@ -269,7 +269,8 @@ TEST_P(CASTest, NodesBig) {
ASSERT_THAT_ERROR(CAS->validate(CAS->getID(ID)), Succeeded());
}
-#if LLVM_ENABLE_THREADS
+// FIXME: Re-enable the test.
+#if 0
/// Common test functionality for creating blobs in parallel. You can vary which
/// cas instances are the same or
diff erent, and the size of the created blobs.
static void testBlobsParallel(ObjectStore &Read1, ObjectStore &Read2,
More information about the llvm-commits
mailing list