aboutsummaryrefslogtreecommitdiff
path: root/helper
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>2017-10-17 15:11:57 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2017-10-19 18:02:01 +0300
commit52877c96e12bf62614df0482175384565a851083 (patch)
tree982de1758a902d6eb4bd7c673982b94b1bab8797 /helper
parent133e7fc06147486fff5ab3393b1a791ab97d19d3 (diff)
helper: add ${EXEEXT} when calling compiled programs
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'helper')
-rw-r--r--helper/test/Makefile.am2
-rwxr-xr-xhelper/test/odpthreads_as_processes2
-rwxr-xr-xhelper/test/odpthreads_as_pthreads2
3 files changed, 4 insertions, 2 deletions
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}