Skip to content

Commit 9eec2ac

Browse files
committed
Revert "Pass SWIFT_EXEC to swift-test via bootstrap (#4213)"
This reverts commit 59dc518. This change was incorrect, `bootstrap` is in fact creating a symlink to the inferior compiler for testing, so overriding `SWIFT_EXEC` is incorrect.
1 parent ca44390 commit 9eec2ac

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Utilities/bootstrap

+1-5
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)