X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=test%2Fideatest.c;h=c80e18f80ab77fc8299dfdccf6583542c66d9221;hp=a208334693b642e2cb190496a0bda6f267dfe994;hb=df364297495e1d7409f1fcb0f4432c8671019cd8;hpb=deeac6c346f73a1b6106f44160b62e883ee71a40 diff --git a/test/ideatest.c b/test/ideatest.c index a208334693..c80e18f80a 100644 --- a/test/ideatest.c +++ b/test/ideatest.c @@ -9,8 +9,7 @@ #include -#include "../e_os.h" -#include "test_main.h" +#include "internal/nelem.h" #include "testutil.h" #ifndef OPENSSL_NO_IDEA @@ -109,11 +108,12 @@ static int test_idea_cfb64(void) } #endif -void register_tests(void) +int setup_tests(void) { #ifndef OPENSSL_NO_IDEA ADD_TEST(test_idea_ecb); ADD_TEST(test_idea_cbc); ADD_TEST(test_idea_cfb64); #endif + return 1; }