Files
runner-images/images/win/scripts/Tests/LLVM.Tests.ps1
2022-07-06 01:00:28 +02:00

11 lines
291 B
PowerShell

Describe "Clang/LLVM" {
BeforeAll {
$toolsetVersion = (Get-ToolsetContent).llvm.version
}
It "Clang/LLVM <toolsetVersion> installed and version is correct" {
$clangVersion = clang --version
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
}
}