1 | /* Test BSWAP_LIMB. |
---|
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 2.1 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; see the file COPYING.LIB. If not, write to |
---|
19 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, |
---|
20 | MA 02111-1307, USA. */ |
---|
21 | |
---|
22 | #include <stdio.h> |
---|
23 | #include <stdlib.h> |
---|
24 | |
---|
25 | #include "gmp.h" |
---|
26 | #include "gmp-impl.h" |
---|
27 | #include "tests.h" |
---|
28 | |
---|
29 | |
---|
30 | int |
---|
31 | main (void) |
---|
32 | { |
---|
33 | mp_limb_t src, want, got; |
---|
34 | int i; |
---|
35 | |
---|
36 | mp_trace_base = -16; |
---|
37 | |
---|
38 | for (i = 0; i < 1000; i++) |
---|
39 | { |
---|
40 | mpn_random (&src, (mp_size_t) 1); |
---|
41 | |
---|
42 | want = refmpn_bswap_limb (src); |
---|
43 | |
---|
44 | BSWAP_LIMB (got, src); |
---|
45 | if (got != want) |
---|
46 | { |
---|
47 | printf ("BSWAP_LIMB wrong result\n"); |
---|
48 | error: |
---|
49 | mpn_trace (" src ", &src, (mp_size_t) 1); |
---|
50 | mpn_trace (" want", &want, (mp_size_t) 1); |
---|
51 | mpn_trace (" got ", &got, (mp_size_t) 1); |
---|
52 | abort (); |
---|
53 | } |
---|
54 | |
---|
55 | BSWAP_LIMB_FETCH (got, &src); |
---|
56 | if (got != want) |
---|
57 | { |
---|
58 | printf ("BSWAP_LIMB_FETCH wrong result\n"); |
---|
59 | goto error; |
---|
60 | } |
---|
61 | |
---|
62 | BSWAP_LIMB_STORE (&got, src); |
---|
63 | if (got != want) |
---|
64 | { |
---|
65 | printf ("BSWAP_LIMB_STORE wrong result\n"); |
---|
66 | goto error; |
---|
67 | } |
---|
68 | } |
---|
69 | exit (0); |
---|
70 | } |
---|