mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
8ef1ec0ca3
Fix Makefile to set safesetid-test.sh to TEST_PROGS instead
of non existing run_tests.sh.
Without this fix, I got following error.
----
TAP version 13
1..1
# selftests: safesetid: run_tests.sh
# Warning: file run_tests.sh is missing!
not ok 1 selftests: safesetid: run_tests.sh
----
Fixes: c67e8ec03f
("LSM: SafeSetID: add selftest")
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
9 lines
186 B
Makefile
9 lines
186 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for mount selftests.
|
|
CFLAGS = -Wall -O2
|
|
LDLIBS = -lcap
|
|
|
|
TEST_PROGS := safesetid-test.sh
|
|
TEST_GEN_FILES := safesetid-test
|
|
|
|
include ../lib.mk
|