Hi Linus, Please pull the following Kselftest update for 4.16-rc5.
This kselftest fixes update has a fix for regression in memory-hotplug install script that prevents the test from running on the target. Diff for the update is attached. thanks, -- Shuah ----------------------------------------------------------------------------------- The following changes since commit f6869826de700bce59e2cef14974f99836e34e4f: selftests: vm: update .gitignore with new test (2018-02-26 16:09:50 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-4.16-rc5 for you to fetch changes up to ba004a2955f759946d8c98ca1a9c8d09818b1223: selftests: memory-hotplug: fix emit_tests regression (2018-03-02 10:12:59 -0700) ---------------------------------------------------------------- linux-kselftest-4.16-rc5 This kselftest fixes update has a fix for regression in memory-hotplug install script that prevents the test from running on the target. ---------------------------------------------------------------- Shuah Khan (1): selftests: memory-hotplug: fix emit_tests regression tools/testing/selftests/memory-hotplug/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -----------------------------------------------------------------------------------
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]"