crypto: use error_abort for unexpected failures
authorDaniel P. Berrangé <berrange@redhat.com>
Mon, 11 Mar 2024 12:11:09 +0000 (12:11 +0000)
committerDaniel P. Berrangé <berrange@redhat.com>
Tue, 19 Mar 2024 20:17:12 +0000 (20:17 +0000)
commit48ca1cabd3f8f3ec5342bd5b6ae9513b12d1951d
treefeb2979a874df7020b4b4316f1edecea35b47330
parente503fc55acffccac5d2755633e7a48262e8edd9b
crypto: use error_abort for unexpected failures

This improves the error diagnosis from the unit test when a cipher
is unexpected not available from

ERROR:../tests/unit/test-crypto-cipher.c:683:test_cipher: assertion failed: (err == NULL)
Bail out! ERROR:../tests/unit/test-crypto-cipher.c:683:test_cipher: assertion failed: (err == NULL)
Aborted (core dumped)

to

Unexpected error in qcrypto_cipher_ctx_new() at ../crypto/cipher-gcrypt.c.inc:262:
./build//tests/unit/test-crypto-cipher: Cannot initialize cipher: Invalid cipher algorithm
Aborted (core dumped)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
tests/unit/test-crypto-cipher.c