mirror of
https://github.com/mnauw/git-remote-hg.git
synced 2026-01-22 06:02:05 +01:00
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>
20 lines
246 B
Makefile
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
|