Skip to content

Commit

Permalink
#63. Scripts::CollectCLangCoverage: print executables locations.
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstantinTomashevich committed May 8, 2023
1 parent d222bf6 commit 3fbbb0e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Script/Coverage/CollectCLangCoverage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@ if (-Not(Get-Command llvm-profdata))
exit 4
}

echo "LLVM Profdata location: ${(Get-Command llvm-profdata).Path}"
$LLVMProfdataPath = (Get-Command llvm-profdata).Path
echo "LLVM Profdata location: $LLVMProfdataPath"

if (-Not(Get-Command llvm-cov))
{
echo "Unable to find llvm-cov in path!"
exit 5
}

echo "LLVM Cov location: ${(Get-Command llvm-cov).Path}"
$LLVMCovPath = (Get-Command llvm-cov).Path
echo "LLVM Cov location: $LLVMCovPath"

$Configuration = Get-Content $ConfigurationFile | ConvertFrom-Json
$Filter = $Configuration.Filter
Expand Down

0 comments on commit 3fbbb0e

Please sign in to comment.