4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
33 * \brief Bitarray test
35 * \author Daniele Basile <asterix@develer.com>
38 #include <struct/bitarray.h>
40 #include <cfg/compiler.h>
42 #include <cfg/debug.h>
49 BITARRAY_ALLOC(test1, TEST1_LEN);
50 BITARRAY_ALLOC(test2, TEST2_LEN);
55 int bitarray_testSetup(void)
58 bitarray_init(&bitx1, TEST1_LEN, test1, sizeof(test1));
59 bitarray_init(&bitx2, TEST2_LEN, test2, sizeof(test2));
63 int bitarray_testRun(void)
65 memset(test1, 0xaa, sizeof(test1));
67 bitarray_dump(&bitx1);
68 for (size_t i = 0; i < TEST1_LEN; i++)
70 if (!((bool)(i % 2) == bitarray_test(&bitx1,i)))
74 memset(test1, 0, sizeof(test1));
75 for (size_t i = 0; i < TEST1_LEN; i++)
78 bitarray_clear(&bitx1,i);
80 bitarray_set(&bitx1, i);
83 bitarray_dump(&bitx1);
84 for (size_t i = 0; i < TEST1_LEN; i++)
86 if (!((bool)(i % 2) == bitarray_test(&bitx1, i)))
90 memset(test1, 0, sizeof(test1));
91 bitarray_set(&bitx1, 0);
92 bitarray_dump(&bitx1);
93 if (!bitarray_test(&bitx1, 0))
96 memset(test1, 0, sizeof(test1));
97 bitarray_set(&bitx1, TEST1_LEN);
98 bitarray_dump(&bitx1);
99 if (!bitarray_test(&bitx1, TEST1_LEN))
103 memset(test2, 0xFF, sizeof(test2));
104 bitarray_dump(&bitx2);
105 if (!bitarray_isFull(&bitx2))
108 memset(test2, 0xFF, sizeof(test2));
109 bitarray_clear(&bitx2, 5);
110 bitarray_dump(&bitx2);
111 if (bitarray_isFull(&bitx2))
114 memset(test2, 0xFF, sizeof(test2));
115 bitarray_clear(&bitx2, 13);
116 bitarray_dump(&bitx2);
117 if (bitarray_isFull(&bitx2))
127 int bitarray_testTearDown(void)