Makefile (b7bb8442fa902272ffe937a226829c9be7bfb14b) | Makefile (d869424558419a4a34a12bd5187b5d6d06ee132f) |
---|---|
1CC = $(CROSS_COMPILE)gcc 2BUILD_FLAGS = -DKTEST 3CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS) 4LDFLAGS += -lrt -lpthread 5bins = posix_timers nanosleep inconsistency-check nsleep-lat raw_skew \ 6 set-timer-lat threadtest mqueue-lat valid-adjtimex \ | 1CC = $(CROSS_COMPILE)gcc 2BUILD_FLAGS = -DKTEST 3CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS) 4LDFLAGS += -lrt -lpthread 5bins = posix_timers nanosleep inconsistency-check nsleep-lat raw_skew \ 6 set-timer-lat threadtest mqueue-lat valid-adjtimex \ |
7 alarmtimer-suspend | 7 alarmtimer-suspend change_skew |
8 9all: ${bins} 10 11# these are all "safe" tests that don't modify 12# system time or require escalated privledges 13run_tests: all 14 ./posix_timers 15 ./nanosleep --- 5 unchanged lines hidden (view full) --- 21 ./threadtest -t 30 -n 8 22 23# these tests require escalated privledges 24# and may modify the system time or trigger 25# other behavior like suspend 26run_destructive_tests: run_tests 27 ./alarmtimer-suspend 28 ./valid-adjtimex | 8 9all: ${bins} 10 11# these are all "safe" tests that don't modify 12# system time or require escalated privledges 13run_tests: all 14 ./posix_timers 15 ./nanosleep --- 5 unchanged lines hidden (view full) --- 21 ./threadtest -t 30 -n 8 22 23# these tests require escalated privledges 24# and may modify the system time or trigger 25# other behavior like suspend 26run_destructive_tests: run_tests 27 ./alarmtimer-suspend 28 ./valid-adjtimex |
29 ./change_skew |
|
29 30clean: 31 rm -f ${bins} | 30 31clean: 32 rm -f ${bins} |