Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Sources/SWBUtil/Process.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ extension Process {
case .linux:
// Amazon Linux 2 has glibc 2.26, and glibc 2.29 is needed for posix_spawn_file_actions_addchdir_np support
FileManager.default.contents(atPath: "/etc/system-release").map { String(decoding: $0, as: UTF8.self) == "Amazon Linux release 2 (Karoo)\n" } ?? false
case .openbsd:
true
default:
false
}
Expand Down
2 changes: 1 addition & 1 deletion Tests/SWBBuildSystemTests/BuildTaskBehaviorTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ fileprivate struct BuildTaskBehaviorTests: CoreBasedTests {
}

/// Check that we honor specs which are unsafe to interrupt.
@Test(.requireSDKs(.host), .skipHostOS(.windows, "no bash shell"), .skipHostOS(.freebsd, "Currently hangs on FreeBSD"))
@Test(.requireSDKs(.host), .skipHostOS(.windows, "no bash shell"))
func unsafeToInterrupt() async throws {
let fs = localFS
let output = MakePlannedVirtualNode("<WAIT>")
Expand Down
Loading