Files
git-remote-hg/test/Makefile
Felipe Contreras b022367aef test: temporarily disable hg-git tests
They work, but they need too many changes in different packages.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2016-05-16 22:29:50 -05:00

20 lines
233 B
Makefile

RM ?= rm -f
T = main.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