Files
git-remote-hg/test/Makefile
Mark Nauwelaerts ab398ade1d Merge commit '7196dac02d94105586305462be5c15a812c6f7de' into felipec
These changes can be mostly accepted and merged with limited resolution,
especially since hg-git testing is mostly disabled and discarded in
future commits.
2025-04-29 21:56:56 +02:00

20 lines
265 B
Makefile

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