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

selftests: android: Fix custom install from skipping test progs

Update custom install rule to install all generated test programs. This
fixes android/ion tests to be installed correctly.

Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

+1 -1
+1 -1
tools/testing/selftests/android/Makefile
··· 21 21 22 22 override define INSTALL_RULE 23 23 mkdir -p $(INSTALL_PATH) 24 - install -t $(INSTALL_PATH) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) 24 + install -t $(INSTALL_PATH) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) 25 25 26 26 @for SUBDIR in $(SUBDIRS); do \ 27 27 BUILD_TARGET=$(OUTPUT)/$$SUBDIR; \