From ef2db24dbe7e39ebfabca2c10905909708c5738b Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sun, 9 Jul 2023 19:47:57 -0700 Subject: [PATCH] TSCTestSupport: account for `:` in function names Windows does not permit `:` in the file names. Substitute `:` with `_` to permit tests to execute on Windows. --- Sources/TSCTestSupport/misc.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/TSCTestSupport/misc.swift b/Sources/TSCTestSupport/misc.swift index 6d58aa17..3201b4c1 100644 --- a/Sources/TSCTestSupport/misc.swift +++ b/Sources/TSCTestSupport/misc.swift @@ -33,6 +33,7 @@ public func testWithTemporaryDirectory( .replacingOccurrences(of: "(", with: "") .replacingOccurrences(of: ")", with: "") .replacingOccurrences(of: ".", with: "") + .replacingOccurrences(of: ":", with: "_") try withTemporaryDirectory(prefix: "spm-tests-\(cleanedFunction)") { tmpDirPath in defer { // Unblock and remove the tmp dir on deinit.