Files

11 lines
291 B
PowerShell
Raw Permalink Normal View History

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