2022-02-24 17:58:26 +01:00
|
|
|
/*
|
|
|
|
* 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)
|
|
|
|
{
|
2022-11-04 22:50:53 +01:00
|
|
|
size_t a = 20;
|
|
|
|
|
|
|
|
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND(a, 7));
|
2022-02-24 17:58:26 +01:00
|
|
|
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND(21, 7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(3, DIV_ROUND(22, 7));
|
2022-11-09 17:46:49 +01:00
|
|
|
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(-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(-3, DIV_ROUND(-20, 7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(-3, DIV_ROUND(-21, 7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(-3, DIV_ROUND(-22, 7));
|
2022-02-24 17:58:26 +01:00
|
|
|
TEST_ASSERT_EQUAL_INT(0, DIV_ROUND(1, UINT32_MAX));
|
2022-11-09 17:46:49 +01:00
|
|
|
|
2022-02-24 17:58:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
2022-11-09 17:46:49 +01:00
|
|
|
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(-2, DIV_ROUND_UP(20, -7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(-3, DIV_ROUND_UP(21, -7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(-3, DIV_ROUND_UP(22, -7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(-2, DIV_ROUND_UP(-20, 7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(-3, DIV_ROUND_UP(-21, 7));
|
|
|
|
TEST_ASSERT_EQUAL_INT(-3, DIV_ROUND_UP(-22, 7));
|
2022-02-24 17:58:26 +01:00
|
|
|
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;
|
|
|
|
}
|