Add Makefile for multishell testing

updated nvm current test for zsh
This commit is contained in:
Koen Punt
2014-03-22 18:37:41 +01:00
parent ba1e2f1cdf
commit 52a384a0cc
3 changed files with 17 additions and 2 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
URCHIN=`which urchin`
SHELLS=sh bash dash ksh zsh
.PHONY: $(SHELLS) test
fast: $(SHELLS)
$(SHELLS):
@printf '\n\033[0;34m%s\033[0m\n' "Running tests in $@"
@$@ $(URCHIN) -f test/fast
test: fast
@$(URCHIN) -f test/slow
default: test