selftests: android: Fix custom install from skipping test progs
authorShuah Khan <skhan@linuxfoundation.org>
Mon, 2 Mar 2020 21:55:51 +0000 (14:55 -0700)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 13 Mar 2020 19:46:55 +0000 (13:46 -0600)
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>
tools/testing/selftests/android/Makefile

index 7c46271..9258306 100644 (file)
@@ -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;        \