Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: rds: move test.py to TEST_FILES

The test.py should not be run separately. It should be run via run.sh,
which will do some sanity checks first. Move the test.py from TEST_PROGS
to TEST_FILES.

Reported-by: Maximilian Heyne <mheyne@amazon.de>
Closes: https://lore.kernel.org/netdev/20241122150129.GB18887@dev-dsk-mheyne-1b-55676e6a.eu-west-1.amazon.com
Fixes: 3ade6ce1255e ("selftests: rds: add testing infrastructure")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Reviewed-by: Allison Henderson <allison.henderson@oracle.com>
Link: https://patch.msgid.link/20241124073243.847932-1-liuhangbin@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>

authored by

Hangbin Liu and committed by
Paolo Abeni
663a9174 122aba8c

+2 -3
+2 -3
tools/testing/selftests/net/rds/Makefile
··· 3 3 all: 4 4 @echo mk_build_dir="$(shell pwd)" > include.sh 5 5 6 - TEST_PROGS := run.sh \ 7 - test.py 6 + TEST_PROGS := run.sh 8 7 9 - TEST_FILES := include.sh 8 + TEST_FILES := include.sh test.py 10 9 11 10 EXTRA_CLEAN := /tmp/rds_logs include.sh 12 11