test_conversion thinkos.
[darcs2git.git] / Makefile
blob41bd283275599eb85b1f6c5c1139fd6987ff29a7
2 .PHONY: test-results
3 test: test-results
5 TESTS=$(notdir $(wildcard tests/*))
6 test-results:
7 rm -rf $@
8 mkdir $@
9 $(foreach t,$(TESTS),\
10 python darcs2git.py --debug -d $@/$(t).git tests/$(t) \
11 && ) true
13 show:
14 $(foreach t,$(TESTS),\
15 GIT_DIR=test-results/$(t).git gitk & ) true