5801bbefbe891509d2a33b54433ee9f5c6226e19
[sfrench/cifs-2.6.git] / tools / testing / selftests / timers / Makefile
1 BUILD_FLAGS = -DKTEST
2 CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
3 LDFLAGS += -lrt -lpthread -lm
4
5 # these are all "safe" tests that don't modify
6 # system time or require escalated privileges
7 TEST_GEN_PROGS = posix_timers nanosleep nsleep-lat set-timer-lat mqueue-lat \
8              inconsistency-check raw_skew threadtest rtctest
9
10 TEST_GEN_PROGS_EXTENDED = alarmtimer-suspend valid-adjtimex adjtick change_skew \
11                       skew_consistency clocksource-switch freq-step leap-a-day \
12                       leapcrash set-tai set-2038 set-tz
13
14
15 include ../lib.mk
16
17 # these tests require escalated privileges
18 # and may modify the system time or trigger
19 # other behavior like suspend
20 run_destructive_tests: run_tests
21         ./alarmtimer-suspend
22         ./valid-adjtimex
23         ./adjtick
24         ./change_skew
25         ./skew_consistency
26         ./clocksource-switch
27         ./freq-step
28         ./leap-a-day -s -i 10
29         ./leapcrash
30         ./set-tz
31         ./set-tai
32         ./set-2038
33