[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <55c564bf16b9dfb0c7d7fab2e350db2a9e5165f5.1505257614.git.shuahkh@osg.samsung.com>
Date: Tue, 12 Sep 2017 17:53:04 -0600
From: Shuah Khan <shuahkh@....samsung.com>
To: yamada.masahiro@...ionext.com, mmarek@...e.com, shuah@...nel.org,
tglx@...utronix.de, mingo@...hat.com, peterz@...radead.org,
bamvor.zhangjian@...aro.org, emilio.lopez@...labora.co.uk,
corbet@....net
Cc: Shuah Khan <shuahkh@....samsung.com>, tytso@....edu,
ebiederm@...ssion.com, Tim.Bird@...y.com,
gregkh@...uxfoundation.org, linux-kbuild@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-kselftest@...r.kernel.org
Subject: [PATCH 11/11] selftests: mqueue: Use full path to run tests from Makefile
Use full path including $(OUTPUT) to run tests from Makefile for
normal case when objects reside in the source tree as well as when
objects are relocated with make O=dir. In both cases $(OUTPUT) will
be set correctly by lib.mk.
Signed-off-by: Shuah Khan <shuahkh@....samsung.com>
---
tools/testing/selftests/mqueue/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/testing/selftests/mqueue/Makefile b/tools/testing/selftests/mqueue/Makefile
index 79a664aeb8d7..0f5e347b068d 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
- @./mq_open_tests /test1 || echo "selftests: mq_open_tests [FAIL]"
- @./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
--
2.11.0
Powered by blists - more mailing lists