diff options
author | Shuah Khan <shuahkh@osg.samsung.com> | 2018-02-13 10:45:57 -0700 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2018-02-26 16:09:49 -0700 |
commit | 16c513b13477b8da7958e8112bf23cd59b87a7c1 (patch) | |
tree | c87275304533bb9b638b7e6c514ddd4dcb346b29 /tools/testing | |
parent | 067b25a5639b10dfdd41ce6b4d4140fe84d0a8e7 (diff) | |
download | linux-stable-16c513b13477b8da7958e8112bf23cd59b87a7c1.tar.gz linux-stable-16c513b13477b8da7958e8112bf23cd59b87a7c1.tar.bz2 linux-stable-16c513b13477b8da7958e8112bf23cd59b87a7c1.zip |
selftests: memory-hotplug: silence test command echo
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>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/memory-hotplug/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/memory-hotplug/Makefile b/tools/testing/selftests/memory-hotplug/Makefile index 86636d207adf..183b46883875 100644 --- a/tools/testing/selftests/memory-hotplug/Makefile +++ b/tools/testing/selftests/memory-hotplug/Makefile @@ -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: |