selftests: user: remove user suite

The user test suite has only one test, test_user_copy which loads
test_user_copy module for testing. But test_user_copy module has already
been converted to kunit (see fixes). Hence remove the entire suite.

Fixes: cf6219ee88 ("usercopy: Convert test_user_copy to KUnit test")
Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
Muhammad Usama Anjum 2024-07-25 16:08:03 +05:00 committed by Shuah Khan
parent f09db2b4f1
commit d138b51460
4 changed files with 0 additions and 29 deletions

View file

@ -107,7 +107,6 @@ TARGETS += tmpfs
TARGETS += tpm2 TARGETS += tpm2
TARGETS += tty TARGETS += tty
TARGETS += uevent TARGETS += uevent
TARGETS += user
TARGETS += user_events TARGETS += user_events
TARGETS += vDSO TARGETS += vDSO
TARGETS += mm TARGETS += mm

View file

@ -1,9 +0,0 @@
# SPDX-License-Identifier: GPL-2.0-only
# Makefile for user memory selftests
# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"
all:
TEST_PROGS := test_user_copy.sh
include ../lib.mk

View file

@ -1 +0,0 @@
CONFIG_TEST_USER_COPY=m

View file

@ -1,18 +0,0 @@
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Runs copy_to/from_user infrastructure using test_user_copy kernel module
# Kselftest framework requirement - SKIP code is 4.
ksft_skip=4
if ! /sbin/modprobe -q -n test_user_copy; then
echo "user: module test_user_copy is not found [SKIP]"
exit $ksft_skip
fi
if /sbin/modprobe -q test_user_copy; then
/sbin/modprobe -q -r test_user_copy
echo "user_copy: ok"
else
echo "user_copy: [FAIL]"
exit 1
fi