summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/timers/Makefile
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2015-03-12 03:40:02 +0300
committerShuah Khan <shuahkh@osg.samsung.com>2015-03-12 22:22:13 +0300
commit51f91cbdf5450b773eb221a2dfd141a92413370e (patch)
treeb375cd20af089c1964541916ca148c2c2710de54 /tools/testing/selftests/timers/Makefile
parentc5fffcb2bd4e2fdc37875fc4368db49ac927d6df (diff)
downloadlinux-51f91cbdf5450b773eb221a2dfd141a92413370e.tar.xz
selftests/timers: Add clock skew estimation test from timetest suite
This adds my clock skew estimation test from the timetest suite. It measures the drift between CLOCK_MONOTONIC and CLOCK_MONOTONIC_RAW and compares it with the current frequency value from adjtimex. It sometimes can trigger false failures when ntpd isn't in a steady state, but its a useful too when doing adjtimex testing. 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> Tested-by: Prarit Bhargava <prarit@redhat.com> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/timers/Makefile')
-rw-r--r--tools/testing/selftests/timers/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/timers/Makefile b/tools/testing/selftests/timers/Makefile
index dae9ee76b74b..088a791a44cb 100644
--- a/tools/testing/selftests/timers/Makefile
+++ b/tools/testing/selftests/timers/Makefile
@@ -2,7 +2,7 @@ CC = $(CROSS_COMPILE)gcc
BUILD_FLAGS = -DKTEST
CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
LDFLAGS += -lrt -lpthread
-bins = posix_timers nanosleep inconsistency-check nsleep-lat
+bins = posix_timers nanosleep inconsistency-check nsleep-lat raw_skew
all: ${bins}
@@ -11,5 +11,6 @@ run_tests: all
./nanosleep
./nsleep-lat
./inconsistency-check
+ ./raw_skew
clean:
rm -f ${bins}