tests: unit: util: Fix compliance check warnings
As code is moved from test.inc to main.c a compliance check is run for the first time on that code. Fixing warnings. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
This commit is contained in:
parent
7b872d11ba
commit
c0bb064d4e
1 changed files with 3 additions and 3 deletions
|
@ -68,7 +68,7 @@ ZTEST(util, test_COND_CODE_1) {
|
||||||
#define TEST_DEFINE_1 1
|
#define TEST_DEFINE_1 1
|
||||||
#define TEST_DEFINE_0 0
|
#define TEST_DEFINE_0 0
|
||||||
/* Test validates that expected code has been injected. Failure would
|
/* Test validates that expected code has been injected. Failure would
|
||||||
* be seen in compilation (lack of variable or ununsed variable.
|
* be seen in compilation (lack of variable or unused variable).
|
||||||
*/
|
*/
|
||||||
COND_CODE_1(1, (uint32_t x0 = 1;), (uint32_t y0;))
|
COND_CODE_1(1, (uint32_t x0 = 1;), (uint32_t y0;))
|
||||||
zassert_true((x0 == 1));
|
zassert_true((x0 == 1));
|
||||||
|
@ -85,7 +85,7 @@ ZTEST(util, test_COND_CODE_1) {
|
||||||
|
|
||||||
ZTEST(util, test_COND_CODE_0) {
|
ZTEST(util, test_COND_CODE_0) {
|
||||||
/* Test validates that expected code has been injected. Failure would
|
/* Test validates that expected code has been injected. Failure would
|
||||||
* be seen in compilation (lack of variable or ununsed variable.
|
* be seen in compilation (lack of variable or unused variable).
|
||||||
*/
|
*/
|
||||||
COND_CODE_0(0, (uint32_t x0 = 1;), (uint32_t y0;))
|
COND_CODE_0(0, (uint32_t x0 = 1;), (uint32_t y0;))
|
||||||
zassert_true((x0 == 1));
|
zassert_true((x0 == 1));
|
||||||
|
@ -173,7 +173,7 @@ static int inc_func(bool cleanup)
|
||||||
{
|
{
|
||||||
static int a;
|
static int a;
|
||||||
|
|
||||||
if (cleanup) {
|
if (cleanup) {
|
||||||
a = 1;
|
a = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue