Makefile 858 字节
Newer Older
1 2 3
BUILD_FLAGS = -DKTEST
CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
LDFLAGS += -lrt -lpthread
4

5 6
# these are all "safe" tests that don't modify
# 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 18 19

# these tests require escalated privledges
# and may modify the system time or trigger
# other behavior like suspend
20 21
run_destructive_tests: run_tests
	./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