diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2018-03-01 13:04:28 -0700 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2018-03-02 10:12:59 -0700 |
commit | ba004a2955f759946d8c98ca1a9c8d09818b1223 (patch) | |
tree | 15a5cb45aea5e590b509aa42954903156b7dc148 /tools | |
parent | f6869826de700bce59e2cef14974f99836e34e4f (diff) | |
download | linux-ba004a2955f759946d8c98ca1a9c8d09818b1223.tar.gz linux-ba004a2955f759946d8c98ca1a9c8d09818b1223.tar.bz2 linux-ba004a2955f759946d8c98ca1a9c8d09818b1223.zip |
selftests: memory-hotplug: fix emit_tests regression
Commit 16c513b13477
("selftests: memory-hotplug: silence test command echo")
introduced regression in emit_tests and results in the following
failure when selftests are installed and run. Fix it.
Running tests in memory-hotplug
========================================
./run_kselftest.sh: line 121: @./mem-on-off-test.sh: No such file or
directory
selftests: memory-hotplug [FAIL]
Fixes: 16c513b13477 (selftests: memory-hotplug: silence test command echo")
Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Tested-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/memory-hotplug/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/memory-hotplug/Makefile b/tools/testing/selftests/memory-hotplug/Makefile index 183b46883875..686da510f989 100644 --- a/tools/testing/selftests/memory-hotplug/Makefile +++ b/tools/testing/selftests/memory-hotplug/Makefile @@ -5,7 +5,8 @@ include ../lib.mk TEST_PROGS := mem-on-off-test.sh override RUN_TESTS := @./mem-on-off-test.sh -r 2 && echo "selftests: memory-hotplug [PASS]" || echo "selftests: memory-hotplug [FAIL]" -override EMIT_TESTS := echo "$(RUN_TESTS)" + +override EMIT_TESTS := echo "$(subst @,,$(RUN_TESTS))" run_full_test: @/bin/bash ./mem-on-off-test.sh && echo "memory-hotplug selftests: [PASS]" || echo "memory-hotplug selftests: [FAIL]" |