We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d58aff4 commit 74cb6dcCopy full SHA for 74cb6dc
Sources/_InternalTestSupport/misc.swift
@@ -99,6 +99,8 @@ public func testWithTemporaryDirectory<Result>(
99
.replacing(":", with: "_")
100
return try await withTemporaryDirectory(prefix: "spm-tests-\(cleanedFunction)") { tmpDirPath in
101
defer {
102
+ let cwd = FileManager.default.currentDirectoryPath
103
+ print("FMCWD: \(cwd)")
104
// Unblock and remove the tmp dir on deinit.
105
try? localFileSystem.chmod(.userWritable, path: tmpDirPath, options: [.recursive])
106
try? localFileSystem.removeFileTree(tmpDirPath)
@@ -708,4 +710,4 @@ public func executableName(_ name: String) -> String {
708
710
#else
709
711
return name
712
#endif
-}
713
+}
0 commit comments