We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a81741 commit bf4b058Copy full SHA for bf4b058
devops/scripts/windows_detect_hung_tests.ps1
@@ -0,0 +1,8 @@
1
+$exitCode = 0
2
+$hungTests = Get-Process | Where-Object { ($_.Path -match "llvm\\install") -or ($_.Path -match "llvm\\build-e2e") }
3
+$hungTests | Foreach-Object {
4
+ $exitCode = 1
5
+ echo "Test $($_.Path) hung!"
6
+ Stop-Process -Force $_
7
+}
8
+exit $exitCode
0 commit comments