aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/timers/Makefile
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2015-03-11 17:40:02 -0700
committerShuah Khan <shuahkh@osg.samsung.com>2015-03-12 13:22:13 -0600
commit51f91cbdf5450b773eb221a2dfd141a92413370e (patch)
treeb375cd20af089c1964541916ca148c2c2710de54 /tools/testing/selftests/timers/Makefile
parentselftests/timers: Add nsleep-lat test from timetest suite (diff)
downloadwireguard-linux-51f91cbdf5450b773eb221a2dfd141a92413370e.tar.xz
wireguard-linux-51f91cbdf5450b773eb221a2dfd141a92413370e.zip
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}