sapling/Makefile
Augie Fackler 33ac9e86f5 Makefile: drop support for Mercurial older than 1.7
1.7 is now over 3 years old, so this shouldn't matter to anyone. 1.7
is also the first version of run-tests that understands .t files, so
now we can unify all tests.
2014-02-18 16:47:52 -05:00

28 lines
906 B
Makefile

PYTHON=python
help:
@echo 'Commonly used make targets:'
@echo ' tests - run all tests in the automatic test suite'
@echo ' all-version-tests - run all tests against many hg versions'
@echo ' tests-%s - run all tests in the specified hg version'
all: help
.PHONY: tests
tests:
@echo "Path to crew repo is $(CREW) - set this with CREW= if needed."
cd tests && $(PYTHON) $(CREW)/tests/run-tests.py $(TESTFLAGS)
test-%:
@echo "Path to crew repo is $(CREW) - set this with CREW= if needed."
cd tests && $(PYTHON) $(CREW)/tests/run-tests.py $(TESTFLAGS) $@
tests-%:
@echo "Path to crew repo is $(CREW) - set this with CREW= if needed."
hg -R $(CREW) checkout $$(echo $@ | sed s/tests-//) && \
(cd $(CREW) ; $(MAKE) clean ) && \
cd tests && $(PYTHON) $(CREW)/tests/run-tests.py $(TESTFLAGS)
all-version-tests: tests-1.7.5 tests-1.8.1 tests-1.9.3 tests-2.0.2 tests-tip