Skip to content

Commit d2f67c3

Browse files
committed
[libc++] Make sure we forward the git repository from test-at-commit to build-at-commit
1 parent 1dfd131 commit d2f67c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libcxx/utils/test-at-commit

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ def main(argv):
7070

7171
with tempfile.TemporaryDirectory() as install_dir:
7272
# Build the library at the baseline
73-
build_cmd = [os.path.join(PARENT_DIR, 'build-at-commit'), '--install-dir', install_dir, '--commit', args.commit]
73+
build_cmd = [os.path.join(PARENT_DIR, 'build-at-commit'), '--git-repo', args.git_repo,
74+
'--install-dir', install_dir,
75+
'--commit', args.commit]
7476
build_cmd += ['--', '-DCMAKE_BUILD_TYPE=RelWithDebInfo']
7577
subprocess.check_call(build_cmd)
7678

0 commit comments

Comments
 (0)