Files
runner-images-sangeeth/images/macos/tests/LLVM.Tests.ps1
2022-06-28 09:48:08 +03:00

9 lines
318 B
PowerShell

$os = Get-OSVersion
Describe "Clang/LLVM" {
It "Clang/LLVM is installed and version is correct" {
$toolsetVersion = Get-ToolsetValue 'llvm.version'
$clangVersion = & "$(brew --prefix llvm@$toolsetVersion)/bin/clang" --version
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
}
}