1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/unittests/tests-core/tests-core-macros.c
2022-09-21 16:00:26 +02:00

53 lines
1.4 KiB
C

/*
* Copyright (C) 2022 ML!PA Consulting GmbH
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
#include <stdint.h>
#include <limits.h>
#include "embUnit.h"
#include "tests-core.h"
#include "macros/math.h"
static void test_math_signof(void)
{
TEST_ASSERT_EQUAL_INT(1, SIGNOF(3));
TEST_ASSERT_EQUAL_INT(-1, SIGNOF(-3));
TEST_ASSERT_EQUAL_INT(-1, SIGNOF(INT32_MIN));
TEST_ASSERT_EQUAL_INT(1, SIGNOF(UINT32_MAX));
}
static void test_math_div_round(void)
{
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND(20, 7));
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND(21, 7));
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND(22, 7));
TEST_ASSERT_EQUAL_INT(0, DIV_ROUND(1, UINT32_MAX));
}
static void test_math_div_round_up(void)
{
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND_UP(20, 7));
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND_UP(21, 7));
TEST_ASSERT_EQUAL_INT(4, DIV_ROUND_UP(22, 7));
TEST_ASSERT_EQUAL_INT(1, DIV_ROUND_UP(1, UINT32_MAX));
TEST_ASSERT_EQUAL_INT(1536, MATH_ALIGN(1514, 64));
}
Test *tests_core_macros_tests(void)
{
EMB_UNIT_TESTFIXTURES(fixtures) {
new_TestFixture(test_math_signof),
new_TestFixture(test_math_div_round),
new_TestFixture(test_math_div_round_up),
};
EMB_UNIT_TESTCALLER(core_macros_tests, NULL, NULL, fixtures);
return (Test *)&core_macros_tests;
}