diff options
author | Naresh Kamboju <naresh.kamboju@linaro.org> | 2019-05-28 13:18:09 +0100 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2019-05-30 08:32:57 -0600 |
commit | bc2cce3f2ebcae02aa4bb29e3436bf75ee674c32 (patch) | |
tree | c9660b5e7ce0ce912789bce62d4433b2ba8adbb4 /tools | |
parent | 98a13a8d253999cf25eb16d901c35fbd2a8455c4 (diff) | |
download | linux-bc2cce3f2ebcae02aa4bb29e3436bf75ee674c32.tar.bz2 |
selftests: vm: install test_vmalloc.sh for run_vmtests
Add test_vmalloc.sh to TEST_FILES to make sure it gets installed for
run_vmtests.
Fixed below error:
./run_vmtests: line 217: ./test_vmalloc.sh: No such file or directory
Tested with: make TARGETS=vm install INSTALL_PATH=$PWD/x
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/vm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/vm/Makefile b/tools/testing/selftests/vm/Makefile index e13eb6cc8901..05306c58ff9f 100644 --- a/tools/testing/selftests/vm/Makefile +++ b/tools/testing/selftests/vm/Makefile @@ -25,6 +25,8 @@ TEST_GEN_FILES += virtual_address_range TEST_PROGS := run_vmtests +TEST_FILES := test_vmalloc.sh + KSFT_KHDR_INSTALL := 1 include ../lib.mk |