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

6 7
# these are all "safe" tests that don't modify
# system time or require escalated privledges
8
TEST_PROGS = posix_timers nanosleep nsleep-lat set-timer-lat mqueue-lat \
9
	     inconsistency-check raw_skew threadtest rtctest
10

11
TEST_PROGS_EXTENDED = alarmtimer-suspend valid-adjtimex adjtick change_skew \
12
		      skew_consistency clocksource-switch leap-a-day \
13
		      leapcrash set-tai set-2038 set-tz
14 15 16 17 18 19

bins = $(TEST_PROGS) $(TEST_PROGS_EXTENDED)

all: ${bins}

include ../lib.mk
20 21 22 23

# these tests require escalated privledges
# and may modify the system time or trigger
# other behavior like suspend
24 25
run_destructive_tests: run_tests
	./alarmtimer-suspend
26
	./valid-adjtimex
27
	./adjtick
28
	./change_skew
29
	./skew_consistency
30
	./clocksource-switch
31
	./leap-a-day -s -i 10
32
	./leapcrash
33
	./set-tz
34
	./set-tai
35
	./set-2038
36

37
clean:
38
	rm -f ${bins}