selftests: memory-hotplug: silence test command echo
authorShuah Khan <shuahkh@osg.samsung.com>
Tue, 13 Feb 2018 17:45:57 +0000 (10:45 -0700)
committerShuah Khan <shuahkh@osg.samsung.com>
Mon, 26 Feb 2018 23:09:49 +0000 (16:09 -0700)
Silence the following command being printed while running test.

./mem-on-off-test.sh -r 2 && echo "selftests: memory-hotplug [PASS]" ||
echo "selftests: memory-hotplug [FAIL]"

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
tools/testing/selftests/memory-hotplug/Makefile

index 86636d2..183b468 100644 (file)
@@ -4,7 +4,7 @@ all:
 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 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)"
 
 run_full_test: