Skip to content

Commit 0599fbd

Browse files
committed
add Error Downloading Update to the retry commands
1 parent fd07187 commit 0599fbd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

script/test

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,10 @@ function createTestKey(executablePath, testArguments, testName) {
148148
// check if a test is timed out
149149
function isTimedOut(stderrOutput) {
150150
if (stderrOutput) {
151-
return ( stderrOutput.includes("timeout: timed out after") )
151+
return (
152+
stderrOutput.includes("timeout: timed out after") ||
153+
stderrOutput.includes("Error Downloading Update: Could not get code signature for running application")
154+
)
152155
} else {
153156
return false
154157
}

0 commit comments

Comments
 (0)