diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | tests/test-aes-key-wrap.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -5,3 +5,5 @@ TAGS autom4te.cache config.log config.status +tests/test-aes-key-wrap +tests/test-hash diff --git a/tests/test-aes-key-wrap.c b/tests/test-aes-key-wrap.c index 66512e2..79bace6 100644 --- a/tests/test-aes-key-wrap.c +++ b/tests/test-aes-key-wrap.c @@ -136,7 +136,7 @@ int main (int argc, char *argv[]) int failures = 0; printf("Testing whether AES core reports present..."); - if (hal_io_expected(AES_ADDR_NAME0, (const uint8_t *) (AES_CORE_NAME0 AES_CORE_NAME1), 8)) + if (hal_io_expected(AES_ADDR_NAME0, (const uint8_t *) (AES_CORE_NAME0 AES_CORE_NAME1), 8) == HAL_OK) printf("yes\n"); else printf("no\n"); |