Skip to content

Commit

Permalink
selftests/timens: handle a case when alarm clocks are not supported
Browse files Browse the repository at this point in the history
This can happen if a testing node doesn't have RTC (real time clock)
hardware or it doesn't support alarms.

Fixes: 61c5767 ("selftests/timens: Add Time Namespace test for supported clocks")
Acked-by: Vincenzo Frascino <[email protected]>
Reported-by: Vincenzo Frascino <[email protected]>
Signed-off-by: Andrei Vagin <[email protected]>
Signed-off-by: Shuah Khan <[email protected]>
  • Loading branch information
avagin authored and shuahkh committed May 22, 2020
1 parent 5627f9c commit 558ae03
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/testing/selftests/timens/clock_nanosleep.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ int main(int argc, char *argv[])

ksft_set_plan(4);

check_config_posix_timers();
check_supported_timers();

if (unshare_timens())
return 1;
Expand Down
2 changes: 1 addition & 1 deletion tools/testing/selftests/timens/timens.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ int main(int argc, char *argv[])

nscheck();

check_config_posix_timers();
check_supported_timers();

ksft_set_plan(ARRAY_SIZE(clocks) * 2);

Expand Down
13 changes: 12 additions & 1 deletion tools/testing/selftests/timens/timens.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,26 @@
#endif

static int config_posix_timers = true;
static int config_alarm_timers = true;

static inline void check_config_posix_timers(void)
static inline void check_supported_timers(void)
{
struct timespec ts;

if (timer_create(-1, 0, 0) == -1 && errno == ENOSYS)
config_posix_timers = false;

if (clock_gettime(CLOCK_BOOTTIME_ALARM, &ts) == -1 && errno == EINVAL)
config_alarm_timers = false;
}

static inline bool check_skip(int clockid)
{
if (!config_alarm_timers && clockid == CLOCK_BOOTTIME_ALARM) {
ksft_test_result_skip("CLOCK_BOOTTIME_ALARM isn't supported\n");
return true;
}

if (config_posix_timers)
return false;

Expand Down
5 changes: 5 additions & 0 deletions tools/testing/selftests/timens/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ int run_test(int clockid, struct timespec now)
timer_t fd;
int i;

if (check_skip(clockid))
return 0;

for (i = 0; i < 2; i++) {
struct sigevent sevp = {.sigev_notify = SIGEV_NONE};
int flags = 0;
Expand Down Expand Up @@ -74,6 +77,8 @@ int main(int argc, char *argv[])

nscheck();

check_supported_timers();

ksft_set_plan(3);

clock_gettime(CLOCK_MONOTONIC, &mtime_now);
Expand Down
5 changes: 5 additions & 0 deletions tools/testing/selftests/timens/timerfd.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ int run_test(int clockid, struct timespec now)
long long elapsed;
int fd, i;

if (check_skip(clockid))
return 0;

if (tclock_gettime(clockid, &now))
return pr_perror("clock_gettime(%d)", clockid);

Expand Down Expand Up @@ -81,6 +84,8 @@ int main(int argc, char *argv[])

nscheck();

check_supported_timers();

ksft_set_plan(3);

clock_gettime(CLOCK_MONOTONIC, &mtime_now);
Expand Down

0 comments on commit 558ae03

Please sign in to comment.