Skip to content

Commit e000595

Browse files
committed
increase timeout for SDE tests
1 parent c3ef9b6 commit e000595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/all_tests.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ func sdeOf(ctx context.Context, cpu, path string, args ...string) (context.Conte
190190
sdeArgs = append(sdeArgs, args...)
191191

192192
// TODO(CryptoAlg-2154):SDE+ASAN tests will hang without exiting if tests pass for an unknown reason.
193-
// Current workaround is to manually cancel the run after 20 minutes and check the output.
194-
ctx, cancel := context.WithTimeout(ctx, 1800*time.Second)
193+
// Current workaround is to manually cancel the run after 40 minutes and check the output.
194+
ctx, cancel := context.WithTimeout(ctx, 2400*time.Second)
195195

196196
return ctx, cancel, exec.CommandContext(ctx, *sdePath, sdeArgs...)
197197
}

0 commit comments

Comments
 (0)