]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/testing/selftests/timers/Makefile
b90e50c36f9f99a49c414fc351cf0d6f3f1ebf16
[karo-tx-linux.git] / tools / testing / selftests / timers / Makefile
1 BUILD_FLAGS = -DKTEST
2 CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
3 LDFLAGS += -lrt -lpthread
4
5 # these are all "safe" tests that don't modify
6 # system time or require escalated privledges
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 leap-a-day \
12                       leapcrash set-tai set-2038 set-tz
13
14
15 include ../lib.mk
16
17 # these tests require escalated privledges
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         ./leap-a-day -s -i 10
28         ./leapcrash
29         ./set-tz
30         ./set-tai
31         ./set-2038
32