diff options
author | Shuah Khan <skhan@linuxfoundation.org> | 2020-03-02 14:55:51 -0700 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2020-03-13 13:46:55 -0600 |
commit | fb0bb3952401eac4e5a39551239f4e3bc9aeee4a (patch) | |
tree | 7c7c7d3cb7e3130fef213e07db8fd7f1ba2c3b40 /tools/testing/selftests/android | |
parent | 1dc74544edc6753d628fcd1059559fb0ddc1b422 (diff) | |
download | linux-fb0bb3952401eac4e5a39551239f4e3bc9aeee4a.tar.bz2 |
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')
-rw-r--r-- | tools/testing/selftests/android/Makefile | 2 |
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; \ |