Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a12ab9e1 authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Shuah Khan (Samsung OSG)
Browse files

selftests: move RTC tests to rtc subfolder



Move the RTC tests out of the timers folder as they are mostly unrelated.
Keep rtcpie in timers as it only test hrtimers.

Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: default avatarShuah Khan (Samsung OSG) <shuah@kernel.org>
parent 6d73ceab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11878,7 +11878,7 @@ F: include/linux/rtc.h
F:	include/uapi/linux/rtc.h
F:	include/linux/rtc/
F:	include/linux/platform_data/rtc-*
F:	tools/testing/selftests/timers/rtctest.c
F:	tools/testing/selftests/rtc/

REALTEK AUDIO CODECS
M:	Bard Liao <bardliao@realtek.com>
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ TARGETS += powerpc
TARGETS += proc
TARGETS += pstore
TARGETS += ptrace
TARGETS += rtc
TARGETS += seccomp
TARGETS += sigaltstack
TARGETS += size
+2 −0
Original line number Diff line number Diff line
rtctest
setdate
+9 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
CFLAGS += -O3 -Wl,-no-as-needed -Wall
LDFLAGS += -lrt -lpthread -lm

TEST_GEN_PROGS = rtctest

TEST_GEN_PROGS_EXTENDED = setdate

include ../lib.mk
Loading