fixing bashisms in test code
This fixed the build on ubuntu/debian, where dash is the sh.
This commit is contained in:
parent
c6676ea253
commit
e94fc238cf
2 changed files with 4 additions and 5 deletions
|
@ -10,13 +10,12 @@ endef
|
|||
# Color code from https://unix.stackexchange.com/a/10065
|
||||
installcheck:
|
||||
@total=0; failed=0; \
|
||||
pad=" "; \
|
||||
red=""; \
|
||||
green=""; \
|
||||
normal=""; \
|
||||
if [ -t 1 ]; then \
|
||||
ncolors="$$(tput colors)"; \
|
||||
if [[ -n "$$ncolors" && $$ncolors -ge 8 ]]; then \
|
||||
if [ -n "$$ncolors" ] && [ "$$ncolors" -ge 8 ]; then \
|
||||
red="$$(tput setaf 1)"; \
|
||||
green="$$(tput setaf 2)"; \
|
||||
normal="$$(tput sgr0)"; \
|
||||
|
@ -24,9 +23,9 @@ installcheck:
|
|||
fi; \
|
||||
for i in $(_installcheck-list); do \
|
||||
total=$$((total + 1)); \
|
||||
printf "running test $$i... $${pad:$${#i}}"; \
|
||||
printf "running test $$i..."; \
|
||||
log="$$(cd $$(dirname $$i) && $(tests-environment) $$(basename $$i) 2>&1)"; \
|
||||
if [ $$? == 0 ]; then \
|
||||
if [ $$? -eq 0 ]; then \
|
||||
echo "[$${green}PASS$$normal]"; \
|
||||
else \
|
||||
echo "[$${red}FAIL$$normal]"; \
|
||||
|
|
|
@ -332,7 +332,7 @@ let
|
|||
src = jobs.tarball;
|
||||
diskImage = (diskImageFun vmTools.diskImageFuns)
|
||||
{ extraPackages =
|
||||
[ "libsqlite3-dev" "libbz2-dev" "libcurl-dev" "libcurl3-nss" "libssl-dev" "liblzma-dev" "libseccomp-dev" ]
|
||||
[ "libsqlite3-dev" "libbz2-dev" "libcurl-dev" "libcurl3-nss" "libssl-dev" "liblzma-dev" "libseccomp-dev" "ncurses-bin" ]
|
||||
++ extraPackages; };
|
||||
memSize = 1024;
|
||||
meta.schedulingPriority = 50;
|
||||
|
|
Loading…
Reference in a new issue