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
// If the available free disk space on this filesystem is less than twice the amount of data the test is expected to write (2 copies of the file times 2), skip it
Copy file name to clipboardExpand all lines: Tests/SwiftBuildTests/ConsoleCommands/CreateXCFrameworkCommandTests.swift
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ import SWBTestSupport
17
17
18
18
// Note: The functionality of this class is heavily unit tested in `XCFrameworkTests.swift`. These tests are only to ensure that the command is indeed hooked up and registered properly.
19
19
20
-
@Suite(.skipInGitHubActions("failing in the GitHub actions runner environment"),.skipHostOS(.windows))
#expect(String(decoding: executionResult.stdout, as:UTF8.self)=="error: at least one framework or library must be specified."+ String.newline + String.newline)
36
36
}
37
37
38
-
@Test(.skipHostOS(.windows)) // PTY not supported on Windows
38
+
@Test(.skipInGitHubActions("failing in the GitHub actions runner environment"),
39
+
.skipHostOS(.windows)) // PTY not supported on Windows
0 commit comments