You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enabled additional tests on Windows Since all tests on Windows are
either enabled, or are skipped with an associated GitHub issue, update
the XCTSkipOnWindows(...) helper API to require providing a reson as to
why the test is being skipped.
Fixes: #8433
Issue: rdar://148248105
// let matches = windowsPassingTests.filter { $0 == self.invocation?.selector}
40
-
// if matches.count == 0 {
41
-
// try XCTSkipOnWindows()
42
-
// }
43
-
// }
44
-
45
31
func testBasics() async throws {
46
32
let sandbox = AbsolutePath("/tmp/ws/")
47
33
let fs = InMemoryFileSystem()
@@ -8039,7 +8025,7 @@ final class WorkspaceTests: XCTestCase {
8039
8025
8040
8026
func testArtifactChecksum() async throws {
8041
8027
try XCTSkipOnWindows(because: #"""
8042
-
threw error "\tmp\ws doesn't exist in file system" because there is an issue with InMemoryFileSystem readFileContents(...) on Windows
8028
+
https://github.com/swiftlang/swift-package-manager/issues/8615: threw error "\tmp\ws doesn't exist in file system" because there is an issue with InMemoryFileSystem readFileContents(...) on Windows
0 commit comments