]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
selftests: mqueue: fix regression in silencing output from RUN_TESTS
authorShuah Khan <shuahkh@osg.samsung.com>
Mon, 2 Oct 2017 23:02:22 +0000 (17:02 -0600)
committerShuah Khan <shuahkh@osg.samsung.com>
Thu, 5 Oct 2017 17:34:43 +0000 (11:34 -0600)
Fix fix regression in silencing output from RUN_TESTS introduced by
commit <8230b905a6780c6> selftests: mqueue: Use full path to run tests
from Makefile

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

index 0f5e347b068d3bb22d07ddd8308cc55fc263aebb..152823b6cb2152d1661e0fc9dd287ed23831ef75 100644 (file)
@@ -5,8 +5,8 @@ TEST_GEN_PROGS := mq_open_tests mq_perf_tests
 include ../lib.mk
 
 override define RUN_TESTS
-       $(OUTPUT)/mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
-       $(OUTPUT)//mq_perf_tests || echo "selftests: mq_perf_tests [FAIL]"
+       @$(OUTPUT)/mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
+       @$(OUTPUT)/mq_perf_tests || echo "selftests: mq_perf_tests [FAIL]"
 endef
 
 override define EMIT_TESTS