Update the test framework so that the need for test_main is removed. Everything
[openssl.git] / test / ideatest.c
index 14d69dc3214fb26ca97fa24c58c73b3000b5cf80..32fea47ab76613f43d7b7c9f0fcf732b6129309a 100644 (file)
@@ -108,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;
 }