chiark / gitweb /
Merge branch 'master' of git.distorted.org.uk:~mdw/publish/public-git/disorder
[disorder] / libtests / t-vector.c
CommitLineData
d85d9095
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2008 Richard Kettlewell
4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
d85d9095 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
d85d9095 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
d85d9095 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
d85d9095
RK
17 */
18#include "test.h"
19
c68d8eba 20static void test_vector(void) {
d85d9095
RK
21 struct vector v[1];
22 static const char *s[10] = { "three", "four", "five", "six", "seven",
23 "eight", "nine", "ten", "eleven", "twelve" };
24 int n;
25
d85d9095
RK
26 vector_init(v);
27 insist(v->nvec == 0);
28
29 vector_append(v, (char *)"one");
30 insist(v->nvec == 1);
31 insist(!strcmp(v->vec[0], "one"));
32
33 vector_append(v, (char *)"two");
34 insist(v->nvec == 2);
35 insist(!strcmp(v->vec[0], "one"));
36 insist(!strcmp(v->vec[1], "two"));
37
38 vector_terminate(v);
39 insist(v->nvec == 2);
40 insist(!strcmp(v->vec[0], "one"));
41 insist(!strcmp(v->vec[1], "two"));
42 insist(v->vec[2] == 0);
43
44 vector_append_many(v, (char **)s, 10);
45 insist(v->nvec == 12);
46 insist(!strcmp(v->vec[0], "one"));
47 insist(!strcmp(v->vec[1], "two"));
48 for(n = 0; n < 10; ++n)
49 insist(!strcmp(v->vec[n+2], s[n]));
50 vector_terminate(v);
51 insist(v->nvec == 12);
52 insist(v->vec[12] == 0);
53}
54
c68d8eba 55TEST(vector);
d85d9095
RK
56
57/*
58Local Variables:
59c-basic-offset:2
60comment-column:40
61fill-column:79
62indent-tabs-mode:nil
63End:
64*/