From afb70fa178ee6ae1b1228294872674b052965d72 Mon Sep 17 00:00:00 2001 From: David Brown Date: Mon, 18 Jul 2016 17:25:25 +0100 Subject: [PATCH] Try explicitly calling 'sh' in confidence tests to avoid limitation on termux. --- src/tools/make/vishap.make | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tools/make/vishap.make b/src/tools/make/vishap.make index 818e96f4..8b50cb20 100644 --- a/src/tools/make/vishap.make +++ b/src/tools/make/vishap.make @@ -376,11 +376,11 @@ sourcechanges: confidence: @printf "\n\n--- Confidence tests ---\n\n" - cd src/test/confidence/hello; ./test.sh "$(INSTALLDIR)" - cd src/test/confidence/language; ./test.sh "$(INSTALLDIR)" - if [ "$(PLATFORM)" != "windows" ] ; then cd src/test/confidence/signal; ./test.sh "$(INSTALLDIR)"; fi - cd src/test/confidence/lola; ./test.sh "$(INSTALLDIR)" - cd src/test/confidence/arrayassignment; ./test.sh "$(INSTALLDIR)" + cd src/test/confidence/hello; sh ./test.sh "$(INSTALLDIR)" + cd src/test/confidence/language; sh ./test.sh "$(INSTALLDIR)" + if [ "$(PLATFORM)" != "windows" ] ; then cd src/test/confidence/signal; sh ./test.sh "$(INSTALLDIR)"; fi + cd src/test/confidence/lola; sh ./test.sh "$(INSTALLDIR)" + cd src/test/confidence/arrayassignment; sh ./test.sh "$(INSTALLDIR)" @printf "\n\n--- Confidence tests passed ---\n\n"