Skip to content
Merged
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
5 changes: 3 additions & 2 deletions Tests/SwiftlyTests/CommandLineTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,9 @@ public struct CommandLineTests {
func testSwift() async throws {
let tmp = fs.mktemp()
try await fs.mkdir(atPath: tmp)
try await sys.swift().package()._init(.package_path(tmp), .type("executable")).run()
try await sys.swift().build(.package_path(tmp), .configuration("release")).run()
let swiftExec: Executable = .path(try Executable.name("swift").resolveExecutablePath(in: .inherit))
try await sys.swift(executable: swiftExec).package()._init(.package_path(tmp), .type("executable")).run()
try await sys.swift(executable: swiftExec).build(.package_path(tmp), .configuration("release")).run()
}

@Test func testMake() async throws {
Expand Down