Files
runner-images-temp/images/macos/tests/LLVM.Tests.ps1
T

10 lines
337 B
PowerShell
Raw Normal View History

Describe "Clang/LLVM" {
2022-07-06 11:52:52 +02:00
BeforeAll {
2021-11-11 11:23:05 +03:00
$toolsetVersion = Get-ToolsetValue 'llvm.version'
2022-07-06 11:52:52 +02:00
}
It "Clang/LLVM <toolsetVersion> is installed and version is correct" {
$clangVersion = & "$(brew --prefix llvm@$toolsetVersion)/bin/clang" --version
2021-11-11 11:23:05 +03:00
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
}
}