Files
runner-images/images/win/scripts/Tests/LLVM.Tests.ps1
T

7 lines
250 B
PowerShell
Raw Normal View History

2021-11-15 12:54:35 +03:00
Describe "Clang/LLVM" {
It "Clang/LLVM installed and version is correct" {
$toolsetVersion = (Get-ToolsetContent).llvm.version
$clangVersion = clang --version
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
}
}