aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/timers/Makefile
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2015-03-11 17:40:00 -0700
committerShuah Khan <shuahkh@osg.samsung.com>2015-03-12 13:22:13 -0600
commited3fe34a2a4e0c9f184a178c48acf20c7acf244e (patch)
treea6d65ebb16a6347404336d309952ac2e1f467d64 /tools/testing/selftests/timers/Makefile
parentselftests/timers: Add nanosleep test from timetest suite (diff)
downloadlinux-dev-ed3fe34a2a4e0c9f184a178c48acf20c7acf244e.tar.xz
linux-dev-ed3fe34a2a4e0c9f184a178c48acf20c7acf244e.zip
selftests/timers: Add inconsistency-check test from timetests
This adds my inconsistency-test from my timetests suite, which checks for (single threaded) time inconsistencies across the various clockids. 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/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/timers/Makefile b/tools/testing/selftests/timers/Makefile
index 940942369281..fcb7c2fcafe5 100644
--- a/tools/testing/selftests/timers/Makefile
+++ b/tools/testing/selftests/timers/Makefile
@@ -2,13 +2,13 @@ CC = $(CROSS_COMPILE)gcc
BUILD_FLAGS = -DKTEST
CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
LDFLAGS += -lrt -lpthread
-bins = posix_timers nanosleep
+bins = posix_timers nanosleep inconsistency-check
all: ${bins}
run_tests: all
./posix_timers
./nanosleep
-
+ ./inconsistency-check
clean:
rm -f ${bins}