Skip to content

Commit ea344f6

Browse files
author
Shuah Khan
committed
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>
1 parent 3346a6a commit ea344f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/testing/selftests/mqueue/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ TEST_GEN_PROGS := mq_open_tests mq_perf_tests
55
include ../lib.mk
66

77
override define RUN_TESTS
8-
$(OUTPUT)/mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
9-
$(OUTPUT)//mq_perf_tests || echo "selftests: mq_perf_tests [FAIL]"
8+
@$(OUTPUT)/mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
9+
@$(OUTPUT)/mq_perf_tests || echo "selftests: mq_perf_tests [FAIL]"
1010
endef
1111

1212
override define EMIT_TESTS

0 commit comments

Comments
 (0)