sapling/Makefile
David M. Carr 99fed801c4 tests: update versions included in make all-version-tests
This changeset doesn't remove any previous major releases.  Instead, I just
updated major releases to their latest minor release, and added major releases
that have been released since this was last updated.
2012-08-04 15:03:05 -04:00

28 lines
897 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
tests:
cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS)
test-%:
cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(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.5.4 tests-1.6.4 tests-1.7.5 tests-1.8.4 \
tests-1.9.3 tests-2.0.2 tests-2.1.2 tests-2.2.3 \
tests-2.3 tests-tip
.PHONY: tests all-version-tests