mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-16 20:42:29 -04:00
rds/run.sh sets a timer of 400s when calling test.py. However when tests are run through ksft, a default 45s timer is applied. Fix this by adding a ksft timeout in tools/testing/selftests/net/rds/settings Signed-off-by: Allison Henderson <achender@kernel.org> Link: https://patch.msgid.link/20260308055835.1338257-3-achender@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
20 lines
277 B
Makefile
20 lines
277 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
all:
|
|
@echo mk_build_dir="$(shell pwd)" > include.sh
|
|
|
|
TEST_PROGS := run.sh
|
|
|
|
TEST_FILES := \
|
|
include.sh \
|
|
settings \
|
|
test.py \
|
|
# end of TEST_FILES
|
|
|
|
EXTRA_CLEAN := \
|
|
include.sh \
|
|
/tmp/rds_logs \
|
|
# end of EXTRA_CLEAN
|
|
|
|
include ../../lib.mk
|