chiark / gitweb /
Build fix
[disorder] / lib / t-basen.c
CommitLineData
b90f122b
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20#include "test.h"
21
22void test_basen(void) {
23 unsigned long v[64];
24 char buffer[1024];
25
26 fprintf(stderr, "test_basen\n");
27 v[0] = 999;
28 insist(basen(v, 1, buffer, sizeof buffer, 10) == 0);
29 check_string(buffer, "999");
30
31 v[0] = 1+2*7+3*7*7+4*7*7*7;
32 insist(basen(v, 1, buffer, sizeof buffer, 7) == 0);
33 check_string(buffer, "4321");
34
35 v[0] = 0x00010203;
36 v[1] = 0x04050607;
37 v[2] = 0x08090A0B;
38 v[3] = 0x0C0D0E0F;
39 insist(basen(v, 4, buffer, sizeof buffer, 256) == 0);
40 check_string(buffer, "123456789abcdef");
41
42 v[0] = 0x00010203;
43 v[1] = 0x04050607;
44 v[2] = 0x08090A0B;
45 v[3] = 0x0C0D0E0F;
46 insist(basen(v, 4, buffer, sizeof buffer, 16) == 0);
47 check_string(buffer, "102030405060708090a0b0c0d0e0f");
48
49 v[0] = 0x00010203;
50 v[1] = 0x04050607;
51 v[2] = 0x08090A0B;
52 v[3] = 0x0C0D0E0F;
53 insist(basen(v, 4, buffer, 10, 16) == -1);
54}
55
56/*
57Local Variables:
58c-basic-offset:2
59comment-column:40
60fill-column:79
61indent-tabs-mode:nil
62End:
63*/