aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Keeping <[email protected]>2015-08-13 11:14:13 +0000
committerJason A. Donenfeld <[email protected]>2015-08-13 13:36:18 +0000
commit2ef4edee19c3f935dfffc3e0f4a56f5e2f183fa4 (patch)
treece24b097d62b110cedec5ee71026d371abf0673a
parentredirect: cleanliness (diff)
downloadcgit-2ef4edee19c3f935dfffc3e0f4a56f5e2f183fa4.tar.gz
cgit-2ef4edee19c3f935dfffc3e0f4a56f5e2f183fa4.zip
tests: allow shell to be overridden
On some systems (e.g. Solaris), /bin/sh is not a POSIX shell. Git already provides suitable overrides in its config.mak.uname file and we provide cgit.conf to allow the user to further change this. The code for this is taken from Git's t/Makefile, meaning that we now invoke the tests in the same way that Git does. Signed-off-by: John Keeping <[email protected]>
-rw-r--r--tests/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 1556475..65e1117 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,11 +1,15 @@
+include ../git/config.mak.uname
+-include ../cgit.conf
+SHELL_PATH ?= $(SHELL)
+SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
all: $(T)
$(T):
- @./$@ $(CGIT_TEST_OPTS)
+ @'$(SHELL_PATH_SQ)' $@ $(CGIT_TEST_OPTS)
clean:
$(RM) -rf trash