brintos

brintos / linux-shallow public Read only

0
0
Text · 796 B · 0e73a16 Raw
25 lines · plain
1# SPDX-License-Identifier: GPL-2.02CFLAGS += -O3 -Wl,-no-as-needed -Wall3LDLIBS += -lrt -lpthread -lm4 5# these are all "safe" tests that don't modify6# system time or require escalated privileges7TEST_GEN_PROGS = posix_timers nanosleep nsleep-lat set-timer-lat mqueue-lat \8	     inconsistency-check raw_skew threadtest rtcpie9 10DESTRUCTIVE_TESTS = alarmtimer-suspend valid-adjtimex adjtick change_skew \11		      skew_consistency clocksource-switch freq-step leap-a-day \12		      leapcrash set-tai set-2038 set-tz13 14TEST_GEN_PROGS_EXTENDED = $(DESTRUCTIVE_TESTS)15 16TEST_FILES := settings17 18include ../lib.mk19 20# these tests require escalated privileges21# and may modify the system time or trigger22# other behavior like suspend23run_destructive_tests: run_tests24	$(call RUN_TESTS, $(DESTRUCTIVE_TESTS))25