aboutsummaryrefslogtreecommitdiff
path: root/tests/libutil/is_memory_zero.c
blob: 20bd93f7b0c615948905be94e8c4f4c07e1c126d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * is_memory_zero.c
 *
 * Copyright (C) 2021 David Oberhollenzer <goliath@infraroot.at>
 */
#include "config.h"

#include "../test.h"
#include "util.h"

int main(void)
{
	unsigned char temp[1024];
	size_t i, j;

	memset(temp, 0, sizeof(temp));

	for (i = 0; i < sizeof(temp); ++i) {
		TEST_ASSERT(is_memory_zero(temp, i));

		for (j = 0; j < i; ++j) {
			TEST_ASSERT(is_memory_zero(temp, i));
			temp[j] = 42;
			TEST_ASSERT(!is_memory_zero(temp, i));
			temp[j] = 0;
			TEST_ASSERT(is_memory_zero(temp, i));
		}
	}

	return EXIT_SUCCESS;
}