From 2e319bc56f22b350f54b39712c5b53bfddc5fb42 Mon Sep 17 00:00:00 2001 From: Michael Rawdon Date: Mon, 11 Aug 2025 15:12:22 -0700 Subject: [PATCH] Adjusted expected number of CreateBuildDirectory tasks in TaskConstructionPerfTests.createBuildDirectoryTaskGenerationWith500Targets() now that explicit module directories are being created. rdar://157621853 --- .../TaskConstructionPerfTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/SWBTaskConstructionPerfTests/TaskConstructionPerfTests.swift b/Tests/SWBTaskConstructionPerfTests/TaskConstructionPerfTests.swift index 9971e2b6..d9ffa8b7 100644 --- a/Tests/SWBTaskConstructionPerfTests/TaskConstructionPerfTests.swift +++ b/Tests/SWBTaskConstructionPerfTests/TaskConstructionPerfTests.swift @@ -54,7 +54,7 @@ fileprivate struct TaskConstructionPerfTests: CoreBasedTests, PerfTests { await measure { await tester.checkBuild(runDestination: .macOS, checkTaskGraphIntegrity: false) { tester in tester.checkTasks(.matchRuleType("CreateBuildDirectory")) { tasks in - #expect(tasks.count == 1503) + #expect(tasks.count == 2505) } } }