Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

kselftests: timers: Reduce default runtime on inconsistency-check and set-timer-lat

For the default run_timers target, the timers tests takes the
majority of kselftests runtime.

So this patch reduces the default runtime for inconsistentcy-check
and set-timer-lat, which reduced the runtime almost in half.

Before: 11m48.629s
After: 6m47.723s

Cc: Shuah Khan <shuahkh@osg.samsung.com>
Cc: Prarit Bhargava <prarit@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>

authored by

John Stultz and committed by
Shuah Khan
e48f284d 44164c4b

+2 -2
+1 -1
tools/testing/selftests/timers/inconsistency-check.c
··· 166 166 int clockid, opt; 167 167 int userclock = CLOCK_REALTIME; 168 168 int maxclocks = NR_CLOCKIDS; 169 - int runtime = 30; 169 + int runtime = 10; 170 170 struct timespec ts; 171 171 172 172 /* Process arguments */
+1 -1
tools/testing/selftests/timers/set-timer-lat.c
··· 58 58 #define NSEC_PER_SEC 1000000000ULL 59 59 #define UNRESONABLE_LATENCY 40000000 /* 40ms in nanosecs */ 60 60 61 - #define TIMER_SECS 3 61 + #define TIMER_SECS 1 62 62 int alarmcount; 63 63 int clock_id; 64 64 struct timespec start_time;