Commit 7527c038 authored by Shuah Khan's avatar Shuah Khan

selftests/timens: remove ARRAY_SIZE define from individual tests

ARRAY_SIZE is defined in several selftests. Remove definitions from
individual test files and include header file for the define instead.
ARRAY_SIZE define is added in a separate patch to prepare for this
change.

Remove ARRAY_SIZE from timens tests and pickup the one defined in
kselftest.h.
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 08ca3510
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
#define DAY_IN_SEC (60*60*24) #define DAY_IN_SEC (60*60*24)
#define TEN_DAYS_IN_SEC (10*DAY_IN_SEC) #define TEN_DAYS_IN_SEC (10*DAY_IN_SEC)
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
static int child_ns, parent_ns; static int child_ns, parent_ns;
static int switch_ns(int fd) static int switch_ns(int fd)
......
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
#define DAY_IN_SEC (60*60*24) #define DAY_IN_SEC (60*60*24)
#define TEN_DAYS_IN_SEC (10*DAY_IN_SEC) #define TEN_DAYS_IN_SEC (10*DAY_IN_SEC)
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
struct test_clock { struct test_clock {
clockid_t id; clockid_t id;
char *name; char *name;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment