1BUILD_FLAGS = -DKTEST
2CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
3LDFLAGS += -lrt -lpthread -lm
4
5# these are all "safe" tests that don't modify
6# system time or require escalated privileges
7TEST_GEN_PROGS = posix_timers nanosleep nsleep-lat set-timer-lat mqueue-lat \
8	     inconsistency-check raw_skew threadtest rtctest
9
10TEST_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 rtctest_setdate
13
14
15include ../lib.mk
16
17# these tests require escalated privileges
18# and may modify the system time or trigger
19# other behavior like suspend
20run_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
34