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