Tizen 2.1 base
[external/gmp.git] / tests / mpbsd / t-mtox.c
1 /* Test mtox.
2
3 Copyright 2002 Free Software Foundation, Inc.
4
5 This file is part of the GNU MP Library.
6
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
15 License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
19
20 #include <string.h>             /* for strcmp, strlen */
21 #include <stdlib.h>             /* for abort */
22 #include <stdio.h>
23 #include "gmp.h"
24 #include "gmp-impl.h"
25 #include "mp.h"
26 #include "tests.h"
27
28
29 void
30 check_random (void)
31 {
32   mpz_t  z;
33   int    i;
34   char   *got, *want;
35   gmp_randstate_ptr  rands = RANDS;
36
37   mpz_init (z);
38
39   for (i = 0; i < 1000; i++)
40     {
41       mpz_erandomb (z, rands, 6 * GMP_LIMB_BITS);
42       got = mtox (z);
43       want = mpz_get_str (NULL, 16, z);
44       if (strcmp (got, want) != 0)
45         {
46           printf ("mtox wrong result\n");
47           printf ("  got  \"%s\"\n", got);
48           printf ("  want \"%s\"\n", want);
49           abort ();
50         }
51       (*__gmp_free_func) (got, strlen (got) + 1);
52       (*__gmp_free_func) (want, strlen (want) + 1);
53     }
54
55   mpz_clear (z);
56 }
57
58 void
59 check_mem (void)
60 {
61   MINT  *m;
62   char  *s;
63
64   m = itom (0);
65   s = mtox (m);
66   if (! tests_memory_valid (s))
67     {
68       printf ("Skipping t-mtox, cannot test libgmp and libmp memory together\n");
69       exit (0);
70     }
71   mfree (m);
72   (*__gmp_free_func) (s, strlen (s) + 1);
73 }
74
75
76 int
77 main (void)
78 {
79   tests_start ();
80
81   check_mem ();
82   check_random ();
83
84   tests_end ();
85   exit (0);
86 }