Skip to content

Commit 69df972

Browse files
authored
Fix coverage executable substitution in template (#1297)
Looks like the change in d6b7f13 forgot to replace the `%executable%` reference for running coverage.
1 parent 293fb3c commit 69df972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/xctest_runner/xctest_runner.sh.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ xcrun llvm-cov \
8888
-instr-profile "$profdata" \
8989
-ignore-filename-regex='.*external/.+' \
9090
-path-equivalence="$ROOT",. \
91-
"%executable%" \
91+
"$executable_path" \
9292
@"$COVERAGE_MANIFEST" \
9393
> "$COVERAGE_OUTPUT_FILE" \
9494
2> "$error_file" \

0 commit comments

Comments
 (0)