diff mbox series

[v1,8/10] helper: add ${EXEEXT} when calling compiled programs

Message ID 1508245207-16744-9-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v1,1/10] configure: odp_openssl: use AS_HELP_STRING | expand

Commit Message

Github ODP bot Oct. 17, 2017, 1 p.m. UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 235 (lumag:plat-def-2)
 ** https://github.com/Linaro/odp/pull/235
 ** Patch: https://github.com/Linaro/odp/pull/235.patch
 ** Base sha: ec0c3145fcafa09ae3a79875e7e07dd4794583cc
 ** Merge commit sha: c662b285472d8c638ba43867ecfa5e0c7efba9f6
 **/
 helper/test/Makefile.am             | 2 ++
 helper/test/odpthreads_as_processes | 2 +-
 helper/test/odpthreads_as_pthreads  | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/helper/test/Makefile.am b/helper/test/Makefile.am
index 620c1673e..8eee643be 100644
--- a/helper/test/Makefile.am
+++ b/helper/test/Makefile.am
@@ -1,3 +1,5 @@ 
+TESTS_ENVIRONMENT = EXEEXT=${EXEEXT}
+
 LIB   = $(top_builddir)/lib
 
 #in the following line, the libs using the symbols should come before
diff --git a/helper/test/odpthreads_as_processes b/helper/test/odpthreads_as_processes
index 89405f363..01d658836 100755
--- a/helper/test/odpthreads_as_processes
+++ b/helper/test/odpthreads_as_processes
@@ -11,4 +11,4 @@  PATH=.:$PATH
 
 # The odpthreads test recognise the "--odph_proc" option to create
 # odp threads as linux processes:
-odpthreads --odph_proc
+odpthreads${EXEEXT} --odph_proc
diff --git a/helper/test/odpthreads_as_pthreads b/helper/test/odpthreads_as_pthreads
index ef569c3d4..cd68a9e9e 100755
--- a/helper/test/odpthreads_as_pthreads
+++ b/helper/test/odpthreads_as_pthreads
@@ -11,4 +11,4 @@  PATH=.:$PATH
 
 # The odpthreads test without the "--odph_proc" option defaults to create
 # odp threads as linux pthreads:
-odpthreads
+odpthreads${EXEEXT}