Files
runner-images/images/windows/scripts/tests/LLVM.Tests.ps1
2023-11-15 11:24:45 +01: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}*"
}
}