summaryrefslogtreecommitdiffstats
path: root/test/dsatest.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/dsatest.c')
-rw-r--r--test/dsatest.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/dsatest.c b/test/dsatest.c
index 9c5afa3c46..09a49fc369 100644
--- a/test/dsatest.c
+++ b/test/dsatest.c
@@ -1,5 +1,5 @@
/*
- * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@@ -137,9 +137,10 @@ static int dsa_cb(int p, int n, BN_GENCB *arg)
}
#endif /* OPENSSL_NO_DSA */
-void register_tests(void)
+int setup_tests(void)
{
#ifndef OPENSSL_NO_DSA
ADD_TEST(dsa_test);
#endif
+ return 1;
}