Skip to content

Commit 2e6f2c6

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

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
@@ -361,11 +361,7 @@ def test(args):
361361

362362
note("Testing")
363363
parse_test_args(args)
364-
cmd = [
365-
"SWIFT_EXEC=" + args.swiftc_path,
366-
"SWIFT_DRIVER_SWIFT_EXEC=" + args.swiftc_path,
367-
os.path.join(args.bin_dir, "swift-test")
368-
]
364+
cmd = [os.path.join(args.bin_dir, "swift-test")]
369365
if args.parallel:
370366
cmd.append("--parallel")
371367
for arg in args.filter:

0 commit comments

Comments
 (0)