diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-07-27 14:00:57 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-07-27 16:04:38 +0100 |
commit | c0be4c68610cfa8cb60259e4e00d69e8f7d2705d (patch) | |
tree | ad1c51d3ed1793eb995779ab321d37c87730c0b9 /src/tests/tests.c | |
parent | 69891db8e2159be589b0e98cf2f01ccc5118ee4c (diff) | |
download | ipxe-c0be4c68610cfa8cb60259e4e00d69e8f7d2705d.tar.gz |
[test] Generalise cipher tests and use okx()
Generalise the existing support for performing CBC-mode block cipher
tests, and update the code to use okx() for neater reporting of test
results.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/tests/tests.c')
-rw-r--r-- | src/tests/tests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/tests.c b/src/tests/tests.c index 97e510f6e..0e6afee6e 100644 --- a/src/tests/tests.c +++ b/src/tests/tests.c @@ -50,7 +50,7 @@ REQUIRE_OBJECT ( md5_test ); REQUIRE_OBJECT ( sha1_test ); REQUIRE_OBJECT ( sha256_test ); REQUIRE_OBJECT ( sha512_test ); -REQUIRE_OBJECT ( aes_cbc_test ); +REQUIRE_OBJECT ( aes_test ); REQUIRE_OBJECT ( hmac_drbg_test ); REQUIRE_OBJECT ( hash_df_test ); REQUIRE_OBJECT ( bigint_test ); |