aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/mqueue
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2017-10-02 17:02:22 -0600
committerShuah Khan <shuahkh@osg.samsung.com>2017-10-05 11:34:43 -0600
commitea344f6a507f8ce92bf1e10f044c6cfc67e4d22b (patch)
tree7edd5c1ef7ad60147780dca6180453edcd248332 /tools/testing/selftests/mqueue
parentselftests: x86: sysret_ss_attrs doesn't build on a PIE build (diff)
downloadlinux-dev-ea344f6a507f8ce92bf1e10f044c6cfc67e4d22b.tar.xz
linux-dev-ea344f6a507f8ce92bf1e10f044c6cfc67e4d22b.zip
selftests: mqueue: fix regression in silencing output from RUN_TESTS
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>
Diffstat (limited to 'tools/testing/selftests/mqueue')
-rw-r--r--tools/testing/selftests/mqueue/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/mqueue/Makefile b/tools/testing/selftests/mqueue/Makefile
index 0f5e347b068d..152823b6cb21 100644
--- a/tools/testing/selftests/mqueue/Makefile
+++ b/tools/testing/selftests/mqueue/Makefile
@@ -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