mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 05:12:26 +00:00
Try explicitly calling 'sh' in confidence tests to avoid limitation on termux.
This commit is contained in:
parent
3f6c6243cb
commit
afb70fa178
1 changed files with 5 additions and 5 deletions
|
|
@ -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"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue