From 070a6f0973136cfe81895ccecec78519e7d791c4 Mon Sep 17 00:00:00 2001 From: Qiongsi Wu Date: Wed, 19 Nov 2025 18:40:23 -0800 Subject: [PATCH] Disable TestModuleCycle while we investigate the extra diagnostics. --- unittests/DependencyScan/ModuleDeps.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unittests/DependencyScan/ModuleDeps.cpp b/unittests/DependencyScan/ModuleDeps.cpp index e932fd8bf937a..b2e49e63b4969 100644 --- a/unittests/DependencyScan/ModuleDeps.cpp +++ b/unittests/DependencyScan/ModuleDeps.cpp @@ -367,7 +367,8 @@ public func funcA() { }\n")); ASSERT_TRUE(DiagnosticsReader.warningMessages.front() == "This is a warning"); } -TEST_F(ScanTest, TestModuleCycle) { +// Disabled due to rdar://165014838 +TEST_F(ScanTest, DISABLED_TestModuleCycle) { SmallString<256> tempDir; ASSERT_FALSE(llvm::sys::fs::createUniqueDirectory("ScanTest.TestModuleCycle", tempDir)); SWIFT_DEFER { llvm::sys::fs::remove_directories(tempDir); };