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

selftests: lib.mk: Do not process TEST_GEN_MODS_DIR

The directory itself doesn't need have path handling, since it's only to
mean where is the directory that contains modules to be built.

Signed-off-by: Marcos Paulo de Souza <mpdesouza@suse.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Marcos Paulo de Souza and committed by
Shuah Khan
539cd3f4 54ee3526

-3
-3
tools/testing/selftests/lib.mk
··· 54 54 # TEST_PROGS are for test shell scripts. 55 55 # TEST_CUSTOM_PROGS and TEST_PROGS will be run by common run_tests 56 56 # and install targets. Common clean doesn't touch them. 57 - # TEST_GEN_MODS_DIR is used to specify a directory with modules to be built 58 - # before the test executes. These modules are cleaned on the clean target as well. 59 57 TEST_GEN_PROGS := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS)) 60 58 TEST_GEN_PROGS_EXTENDED := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS_EXTENDED)) 61 59 TEST_GEN_FILES := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_FILES)) 62 - TEST_GEN_MODS_DIR := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_MODS_DIR)) 63 60 64 61 all: $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) \ 65 62 $(if $(TEST_GEN_MODS_DIR),gen_mods_dir)