2014-03-23 01:37:41 +08:00
|
|
|
URCHIN=`which urchin`
|
|
|
|
SHELLS=sh bash dash ksh zsh
|
|
|
|
|
2014-05-09 22:23:14 +08:00
|
|
|
.PHONY: $(SHELLS) test test_shell
|
2014-03-23 01:37:41 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2014-05-09 22:23:14 +08:00
|
|
|
test_shell:
|
2014-05-09 22:30:04 +08:00
|
|
|
@printf '\n\033[0;34m%s\033[0m\n' "Running tests in $(SHELL)"
|
2014-05-09 22:23:14 +08:00
|
|
|
@$(SHELL) $(URCHIN) -f test/$(TEST_SUITE)
|
|
|
|
|
2014-03-23 04:10:18 +08:00
|
|
|
default: test
|
|
|
|
|