Files
git-remote-hg/test/Makefile
Felipe Contreras a8bb2a28a3 test: enable hg-git tests
They have been working for a long time but the standard packages needed
to be patched with check-versions to run them successfully.

Now that the expected output is stored we don't need to patch anything
and they can just be run.

This reverts commit b022367aef.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2023-03-06 15:18:53 -06:00

20 lines
246 B
Makefile

RM ?= rm -f
T = $(wildcard *.t)
SHARNESS_TEST_DIRECTORY := $(CURDIR)
export SHARNESS_TEST_DIRECTORY
all: test
test: $(T)
$(MAKE) clean
$(T):
./$@ $(TEST_OPTS)
clean:
$(RM) -r 'trash directory'.* test-results
.PHONY: all test $(T) clean