rh-openjdk / CryptoTest

Complete example of java crypto API
MIT License
3 stars 9 forks source link

Increased timeout for SignatureTests #48

Closed zzambers closed 1 year ago

zzambers commented 1 year ago

Increased timeout for SignatureTests. There has been reports of timeouts on some platforms, based on stack trace, test is not stuck on blocking call (such as reading from /dev/random), but is doing some BigInteger arithmetic (BigInteger arithmetic being slow on some platforms?). See: https://github.com/adoptium/aqa-tests/issues/4336#issuecomment-1512952403

zzambers commented 1 year ago

Probably caused by absence of intrinsics for some platforms, see: https://github.com/adoptium/aqa-tests/issues/4336#issuecomment-1540956287

judovana commented 1 year ago

Maske sense.I can see it in our infra from time to tim on ppc64le: timed out (timeout set to 120000ms, elapsed time including timeout handling was 120543ms). 480>>120 => ok to merge. ty!

zzambers commented 1 year ago

thanks