Skip to content

Commit 98683be

Browse files
committed
Revert "Pass SWIFT_EXEC to swift-test via bootstrap (#4213)"
This reverts commit 59dc518.
1 parent b3f3f0b commit 98683be

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Sources/SPMTestSupport/misc.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ private func swiftArgs(
216216
args += Xcc.flatMap { ["-Xcc", $0] }
217217
args += Xld.flatMap { ["-Xlinker", $0] }
218218
args += Xswiftc.flatMap { ["-Xswiftc", $0] }
219+
args += ["--very-verbose"]
219220
return args
220221
}
221222

Utilities/bootstrap

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -363,11 +363,7 @@ def test(args):
363363

364364
note("Testing")
365365
parse_test_args(args)
366-
cmd = [
367-
"SWIFT_EXEC=" + args.swiftc_path,
368-
"SWIFT_DRIVER_SWIFT_EXEC=" + args.swiftc_path,
369-
os.path.join(args.bin_dir, "swift-test")
370-
]
366+
cmd = [os.path.join(args.bin_dir, "swift-test")]
371367
if args.parallel:
372368
cmd.append("--parallel")
373369
for arg in args.filter:

0 commit comments

Comments
 (0)