Files
git-remote-hg/test/Makefile
Mark Nauwelaerts 93dd913590 Implement remote-helper push capability
Push capability is used depending on remote-hg.capability-push setting and ...
* handles dry-run properly,
* passes copy and rename information onto Mercurial

Fixes felipec/git-remote-hg#61
2016-08-01 14:56:42 +02:00

20 lines
245 B
Makefile

RM ?= rm -f
T = main.t main-push.t bidi.t
TEST_DIRECTORY := $(CURDIR)
export TEST_DIRECTORY
all: test
test: $(T)
$(MAKE) clean
$(T):
$(SHELL) $@ $(TEST_OPTS)
clean:
$(RM) -r 'trash directory'.* test-results
.PHONY: all test $(T) clean