aboutsummaryrefslogtreecommitdiff
path: root/test/hmactest.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/hmactest.c')
-rw-r--r--test/hmactest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/hmactest.c b/test/hmactest.c
index e837391..2431be5 100644
--- a/test/hmactest.c
+++ b/test/hmactest.c
@@ -236,12 +236,13 @@ static char *pt(unsigned char *md, unsigned int len)
}
# endif
-void register_tests(void)
+int setup_tests(void)
{
ADD_ALL_TESTS(test_hmac_md5, 4);
ADD_TEST(test_hmac_single_shot);
ADD_TEST(test_hmac_bad);
ADD_TEST(test_hmac_run);
ADD_TEST(test_hmac_copy);
+ return 1;
}