about summary refs log tree commit diff
path: root/mk
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-10-06T11·04-0500
committerJörg Thalheim <joerg@thalheim.io>2017-10-06T11·12-0500
commite94fc238cf87b90547803d29b04f55e0bb211daa (patch)
tree64222f8c10fe57eb9b25a334ebc2250fcaa8cfa3 /mk
parentc6676ea253e6402760435b1a3cff53d294e4a9fd (diff)
fixing bashisms in test code
This fixed the build on ubuntu/debian, where dash is the sh.
Diffstat (limited to 'mk')
-rw-r--r--mk/tests.mk7
1 files changed, 3 insertions, 4 deletions
diff --git a/mk/tests.mk b/mk/tests.mk
index aa97d6427c..d18b910584 100644
--- a/mk/tests.mk
+++ b/mk/tests.mk
@@ -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]"; \