We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SWIFT_EXEC
1 parent 1e56529 commit 2e6f2c6Copy full SHA for 2e6f2c6
Sources/SPMTestSupport/misc.swift
@@ -216,6 +216,7 @@ private func swiftArgs(
216
args += Xcc.flatMap { ["-Xcc", $0] }
217
args += Xld.flatMap { ["-Xlinker", $0] }
218
args += Xswiftc.flatMap { ["-Xswiftc", $0] }
219
+ args += ["--very-verbose"]
220
return args
221
}
222
Utilities/bootstrap
@@ -361,11 +361,7 @@ def test(args):
361
362
note("Testing")
363
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
- ]
+ cmd = [os.path.join(args.bin_dir, "swift-test")]
369
if args.parallel:
370
cmd.append("--parallel")
371
for arg in args.filter:
0 commit comments