Skip to content

Commit 6ced259

Browse files
authored
Merge pull request #5061 from lplarson/coverage-abspath
[coverage] Pass abspath of coverage-db to build-script-impl
2 parents a040919 + a2155b4 commit 6ced259

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

utils/build-script

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,10 @@ class BuildScriptInvocation(object):
820820
impl_args += ["--llvm-lit-args=%s" % args.lit_args]
821821

822822
if args.coverage_db:
823-
impl_args += ["--coverage-db=%s" % args.coverage_db]
823+
impl_args += [
824+
"--coverage-db=%s" %
825+
os.path.abspath(args.coverage_db)
826+
]
824827

825828
# Compute the set of host-specific variables, which we pass through to
826829
# the build script via environment variables.

0 commit comments

Comments
 (0)