Skip to content

Commit e8aed5d

Browse files
ligurioBuristan
authored andcommitted
test: define UNUSED macro only once
The macro `UNUSED` is widely used across the suite `tarantool-c-tests`. The patch defines macro only once in `test.h` to reuse it in other tests and removes definitions in tests. Reviewed-by: Sergey Kaplun <[email protected]> Signed-off-by: Sergey Kaplun <[email protected]> (cherry picked from commit 1ca1736)
1 parent d3fdadb commit e8aed5d

7 files changed

+4
-12
lines changed

test/tarantool-c-tests/fix-yield-c-hook.test.c

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
#include "test.h"
44
#include "utils.h"
55

6-
#define UNUSED(x) ((void)(x))
7-
86
/*
97
* This test demonstrates LuaJIT's incorrect behaviour, when
108
* calling `lua_yield()` inside a C hook.

test/tarantool-c-tests/gh-8594-sysprof-ffunc-crash.test.c

-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@
4646
* * https://github.com/tarantool/tarantool/issues/9387
4747
*/
4848

49-
#define UNUSED(x) ((void)(x))
50-
5149
#define MESSAGE "Canary is alive"
5250
#define LUACALL "local a = tostring('" MESSAGE "') return a"
5351

test/tarantool-c-tests/lj-1168-unmarked-finalizer-tab.test.c

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
#include "test.h"
55

6-
#define UNUSED(x) ((void)(x))
7-
86
/*
97
* This test demonstrates LuaJIT's incorrect behaviour on
108
* loading Lua chunk with cdata numbers.

test/tarantool-c-tests/lj-549-lua-load.test.c

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
#include "lj_def.h"
55

6-
#define UNUSED(x) ((void)(x))
7-
86
/*
97
* XXX: In C language, objects with static storage duration have
108
* to be initialized with constant expressions or with aggregate

test/tarantool-c-tests/misclib-sysprof-capi.test.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
/* Need for skipcond for OS and ARCH. */
1919
#include "lj_arch.h"
2020

21-
#define UNUSED(x) ((void)(x))
22-
2321
/* --- utils -------------------------------------------------- */
2422

2523
#define SYSPROF_INTERVAL_DEFAULT 100

test/tarantool-c-tests/test.h

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
#include <stdio.h>
55
#include <stdlib.h>
66

7+
#ifndef UNUSED
8+
#define UNUSED(x) ((void)(x))
9+
#endif
10+
711
/*
812
* Test module, based on TAP 14 specification [1].
913
* [1]: https://testanything.org/tap-version-14-specification.html

test/tarantool-c-tests/unit-tap.test.c

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#include "test.h"
22

3-
#define UNUSED(x) ((void)(x))
4-
53
static int test_ok(void *test_state)
64
{
75
UNUSED(test_state);

0 commit comments

Comments
 (0)