linear log commit test
[darcs2git.git] / Makefile
blobcab70ed385735efa2450331e171b8c6d14e990d7
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 && rm -rf test-checkout \
12 && git clone $@/$(t).git test-checkout \
13 && diff -urN --exclude .git test-checkout/ tests/$(t)/_darcs/pristine && ) true