summaryrefslogtreecommitdiff
path: root/tests/mpz/t-root.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mpz/t-root.c')
-rw-r--r--tests/mpz/t-root.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/mpz/t-root.c b/tests/mpz/t-root.c
index 06b8deb20..81b56af7e 100644
--- a/tests/mpz/t-root.c
+++ b/tests/mpz/t-root.c
@@ -25,9 +25,11 @@ MA 02111-1307, USA. */
#include "gmp.h"
#include "gmp-impl.h"
+#include "tests.h"
void debug_mp _PROTO ((mpz_t, int));
+int
main (int argc, char **argv)
{
mpz_t x2;
@@ -42,6 +44,8 @@ main (int argc, char **argv)
unsigned long bsi, size_range;
char *perform_seed;
+ tests_start ();
+
gmp_randinit (rands, GMP_RAND_ALG_LC, 64);
perform_seed = getenv ("GMP_CHECK_RANDOMIZE");
@@ -129,6 +133,14 @@ main (int argc, char **argv)
}
}
+ mpz_clear (bs);
+ mpz_clear (x2);
+ mpz_clear (x);
+ mpz_clear (temp);
+ mpz_clear (temp2);
+ gmp_randclear (rands);
+
+ tests_end ();
exit (0);
}