Replace GFp ladder implementation with ladd-2002-it-4 from EFD
[openssl.git] / test / gmdifftest.c
index 462436ff4851da6afcd4aea10debf95ab530a8f4..f7aa1a3808fa93b5b9929a2216ec269b4dfb7f04 100644 (file)
@@ -9,7 +9,6 @@
 
 #include <openssl/crypto.h>
 
-#include "test_main.h"
 #include "testutil.h"
 
 #define SECS_PER_DAY (24 * 60 * 60)
@@ -56,10 +55,11 @@ static int test_gmtime(int offset)
            check_time(-offset * 1000L);
 }
 
-void register_tests(void)
+int setup_tests(void)
 {
     if (sizeof(time_t) < 8)
         TEST_info("Skipping; time_t is less than 64-bits");
     else
-        ADD_ALL_TESTS(test_gmtime, 1000000);
+        ADD_ALL_TESTS_NOSUBTEST(test_gmtime, 1000000);
+    return 1;
 }