Add LLVM via choco (#4056)

This commit is contained in:
Henti Smith
2021-09-23 09:52:11 +01:00
committed by GitHub
parent f59c79f259
commit c97e29c514
6 changed files with 18 additions and 0 deletions

View File

@@ -81,6 +81,15 @@ Describe "KubernetesTools" {
}
}
Describe "LLVM" {
It "<ToolName>" -TestCases @(
@{ ToolName = "clang" }
@{ ToolName = "clang++" }
) {
"$ToolName --version" | Should -ReturnZeroExitCode
}
}
Describe "Mingw64" {
It "<ToolName>" -TestCases @(
@{ ToolName = "gcc" }