mirror of
https://review.coreboot.org/flashrom.git
synced 2025-10-13 22:10:23 +02:00

Change-Id: I3a8a8e59cbed871e0ecf953e547de56c0656e112 Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/89361 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Peter Marheine <pmarheine@chromium.org> Reviewed-by: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
73 lines
1.5 KiB
C
73 lines
1.5 KiB
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
* SPDX-FileCopyrightText: 2020 Google LLC
|
|
*/
|
|
|
|
#include <include/test.h>
|
|
|
|
#include "tests.h"
|
|
#include "flash.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
void address_to_bits_test_success(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
assert_int_equal(16, address_to_bits(0xAA55));
|
|
}
|
|
|
|
void bitcount_test_success(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
assert_int_equal(4, bitcount(0xAA));
|
|
}
|
|
|
|
void minmax_test_success(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
assert_int_equal(0x55, min(0xAA, 0x55));
|
|
assert_int_equal(0xAA, max(0xAA, 0x55));
|
|
}
|
|
|
|
void strcat_realloc_test_success(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
const char src0[] = "hello";
|
|
const char src1[] = " world";
|
|
char *dest = calloc(1, 1);
|
|
assert_non_null(dest);
|
|
dest = strcat_realloc(dest, src0);
|
|
dest = strcat_realloc(dest, src1);
|
|
assert_string_equal("hello world", dest);
|
|
free(dest);
|
|
}
|
|
|
|
void tolower_string_test_success(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
char str[] = "HELLO AGAIN";
|
|
assert_string_equal("HELLO AGAIN", str);
|
|
tolower_string(str);
|
|
assert_string_equal("hello again", str);
|
|
}
|
|
|
|
void reverse_byte_test_success(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
assert_int_equal(0x5A, reverse_byte(0x5A));
|
|
assert_int_equal(0x0F, reverse_byte(0xF0));
|
|
}
|
|
|
|
void reverse_bytes_test_success(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
uint8_t src[] = { 0xAA, 0x55 };
|
|
uint8_t dst[2];
|
|
reverse_bytes(dst, src, 2);
|
|
assert_int_equal(src[0], dst[1]);
|
|
assert_int_equal(src[1], dst[0]);
|
|
}
|