make suite for shell task configurable
parent
24e22dd8bc
commit
5925bd5e37
3
Makefile
3
Makefile
|
@ -1,5 +1,6 @@
|
||||||
URCHIN=`which urchin`
|
URCHIN=`which urchin`
|
||||||
SHELLS=sh bash dash ksh zsh
|
SHELLS=sh bash dash ksh zsh
|
||||||
|
TEST_SUITE=fast
|
||||||
|
|
||||||
.PHONY: $(SHELLS) test
|
.PHONY: $(SHELLS) test
|
||||||
|
|
||||||
|
@ -7,7 +8,7 @@ fast: $(SHELLS)
|
||||||
|
|
||||||
$(SHELLS):
|
$(SHELLS):
|
||||||
@printf '\n\033[0;34m%s\033[0m\n' "Running tests in $@"
|
@printf '\n\033[0;34m%s\033[0m\n' "Running tests in $@"
|
||||||
@$@ $(URCHIN) -f test/fast
|
@$@ $(URCHIN) -f test/$(TEST_SUITE)
|
||||||
|
|
||||||
test: fast
|
test: fast
|
||||||
@$(URCHIN) -f test/slow
|
@$(URCHIN) -f test/slow
|
||||||
|
|
Loading…
Reference in New Issue