commit 46de6cac87425f5bdb8de5af31a62918f9c0300b from: Stefan Sperling date: Mon Aug 19 16:50:50 2024 UTC make hmac failures detectable by regression tests commit - 7c51647ef180ad6b67d2ac51c60babb3026f65f2 commit + 46de6cac87425f5bdb8de5af31a62918f9c0300b 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 } }