Skip to content

Commit e9ec08d

Browse files
committed
Drop in-tree copy of filecheck executable
1 parent 2fab0ba commit e9ec08d

File tree

3 files changed

+3
-108
lines changed

3 files changed

+3
-108
lines changed

Package.swift

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,11 @@ let package = Package(
1212
dependencies: [
1313
.package(url: "https://github.com/apple/swift-package-manager.git", from: "0.1.0"),
1414
.package(url: "https://github.com/llvm-swift/Symbolic.git", from: "0.0.1"),
15-
.package(url: "https://github.com/llvm-swift/FileCheck.git", from: "0.0.5"),
15+
.package(url: "https://github.com/llvm-swift/FileCheck.git", from: "0.2.0"),
1616
.package(url: "https://github.com/llvm-swift/Lite.git", from: "0.0.3"),
1717
],
1818
targets: [
1919
.target(name: "PrettyStackTrace", dependencies: []),
20-
.target(name: "pst-lite", dependencies: ["LiteSupport", "SPMUtility", "Symbolic"]),
21-
.target(
22-
name: "pst-file-check",
23-
dependencies: ["FileCheck", "SPMUtility"]),
24-
20+
.target(name: "pst-lite", dependencies: ["LiteSupport", "SPMUtility", "Symbolic", "filecheck"]),
2521
]
2622
)

Sources/pst-file-check/main.swift

Lines changed: 0 additions & 101 deletions
This file was deleted.

Sources/pst-lite/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func findAdjacentBinary(_ name: String) -> URL? {
1717

1818
/// Runs `lite` looking for `.test` files and executing them.
1919
do {
20-
let fileCheck = findAdjacentBinary("pst-file-check")!
20+
let fileCheck = findAdjacentBinary("filecheck")!
2121

2222
let subs = [
2323
("FileCheck", fileCheck.path)

0 commit comments

Comments
 (0)