diff --git a/devops/scripts/windows_detect_hung_tests.ps1 b/devops/scripts/windows_detect_hung_tests.ps1 index 1e1e8b2f69f8d..c6942b07ae638 100644 --- a/devops/scripts/windows_detect_hung_tests.ps1 +++ b/devops/scripts/windows_detect_hung_tests.ps1 @@ -1,5 +1,5 @@ $exitCode = 0 -$hungTests = Get-Process | Where-Object { ($_.Path -match "llvm\\install") -or ($_.Path -match "llvm\\build-e2e") } +$hungTests = Get-Process | Where-Object { ($_.Path -match "llvm\\install") -or ($_.Path -match "llvm\\build-e2e") -or ($_.Path -match "llvm\\build") } $hungTests | Foreach-Object { $exitCode = 1 echo "Test $($_.Path) hung!"