commit f2c85e63e61a6415acf42cab83131414a2023d0e from: Stefan Sperling via: Thomas Adam date: Wed Sep 04 19:32:33 2024 UTC make hmac failures detectable by regression tests commit - 9173e8d916a8493520044a760aa7018d159df20c commit + f2c85e63e61a6415acf42cab83131414a2023d0e blob - b6a52303bf93001152ffa036f3837d803c002d6a blob + 2c6cd5bc09b5a166703c82c4cff9e40cd853d91c --- regress/gotd/http-server +++ regress/gotd/http-server @@ -111,7 +111,8 @@ say ""; if (defined $hmac) { my $digest = $hmac->hexdigest; if ($digest ne $hmac_signature) { - die "bad hmac signature: expected: $hmac_signature, actual: $digest"; + print "bad hmac signature: expected: $hmac_signature, actual: $digest"; + die } }