sapling/Makefile

24 lines
751 B
Makefile
Raw Normal View History

2009-04-28 22:25:53 +04:00
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'
2009-04-28 22:25:53 +04:00
all: help
2009-04-28 22:25:53 +04:00
tests:
cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS)
test-%:
2009-04-28 23:13:16 +04:00
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-//) && \
2010-08-26 00:38:30 +04:00
(cd $(CREW) ; $(MAKE) clean ) && \
cd tests && $(PYTHON) $(CREW)/tests/run-tests.py $(TESTFLAGS)
all-version-tests: tests-1.4.3 tests-1.5.4 tests-1.6.2 tests-tip