From: Shuah Khan Date: Fri, 27 Mar 2015 16:07:33 +0000 (-0600) Subject: selftests: Change memory on-off-test.sh name to be unique X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=072264fee89633b676f656613efff7dd5cdbf88a;p=linux-beck.git selftests: Change memory on-off-test.sh name to be unique cpu and memory hotplug scripts use the same name. Change memory on-off-test.sh to mem-on-off-test.sh. Signed-off-by: Shuah Khan Acked-by: Greg Kroah-Hartman --- diff --git a/tools/testing/selftests/memory-hotplug/Makefile b/tools/testing/selftests/memory-hotplug/Makefile index 598a1f68f534..afb2624c7048 100644 --- a/tools/testing/selftests/memory-hotplug/Makefile +++ b/tools/testing/selftests/memory-hotplug/Makefile @@ -2,11 +2,11 @@ all: include ../lib.mk -TEST_PROGS := on-off-test.sh -override RUN_TESTS := ./on-off-test.sh -r 2 || echo "selftests: memory-hotplug [FAIL]" +TEST_PROGS := mem-on-off-test.sh +override RUN_TESTS := ./mem-on-off-test.sh -r 2 || echo "selftests: memory-hotplug [FAIL]" override EMIT_TESTS := echo "$(RUN_TESTS)" run_full_test: - @/bin/bash ./on-off-test.sh || echo "memory-hotplug selftests: [FAIL]" + @/bin/bash ./mem-on-off-test.sh || echo "memory-hotplug selftests: [FAIL]" clean: diff --git a/tools/testing/selftests/memory-hotplug/on-off-test.sh b/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh similarity index 100% rename from tools/testing/selftests/memory-hotplug/on-off-test.sh rename to tools/testing/selftests/memory-hotplug/mem-on-off-test.sh