aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/android/Makefile
diff options
context:
space:
mode:
authorShuah Khan <skhan@linuxfoundation.org>2020-03-02 14:55:51 -0700
committerShuah Khan <skhan@linuxfoundation.org>2020-03-13 13:46:55 -0600
commitfb0bb3952401eac4e5a39551239f4e3bc9aeee4a (patch)
tree7c7c7d3cb7e3130fef213e07db8fd7f1ba2c3b40 /tools/testing/selftests/android/Makefile
parentselftests: android: ion: Fix ionmap_test compile error (diff)
downloadlinux-dev-fb0bb3952401eac4e5a39551239f4e3bc9aeee4a.tar.xz
linux-dev-fb0bb3952401eac4e5a39551239f4e3bc9aeee4a.zip
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>
Diffstat (limited to 'tools/testing/selftests/android/Makefile')
-rw-r--r--tools/testing/selftests/android/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/android/Makefile b/tools/testing/selftests/android/Makefile
index 7c462714b418..9258306cafe9 100644
--- a/tools/testing/selftests/android/Makefile
+++ b/tools/testing/selftests/android/Makefile
@@ -21,7 +21,7 @@ all:
override define INSTALL_RULE
mkdir -p $(INSTALL_PATH)
- install -t $(INSTALL_PATH) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES)
+install -t $(INSTALL_PATH) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES)
@for SUBDIR in $(SUBDIRS); do \
BUILD_TARGET=$(OUTPUT)/$$SUBDIR; \