Skip to content

Commit a2155b4

Browse files
committed
[coverage] Pass abspath of coverage-db to build-script-impl
1 parent ba1127f commit a2155b4

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)