Add utf8 testcase
[darcs2git.git] / Makefile
blobab3625d8d7926413e5c26628f0c6ad037becd3bc
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 --author authors.test --debug -d $@/$(t).git tests/$(t) \
11 && ) true
13 show:
14 $(foreach t,$(TESTS),\
15 GIT_DIR=test-results/$(t).git gitk & ) true