From 223cadbae360e5102bc4799df160fe79e263a5e5 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Thu, 9 Aug 2012 22:38:06 -0500 Subject: [PATCH] Create _repo_ref if needed Add Makefile targets and prereq's to call make-ref-repo.sh to build _repo_ref if it doesn't already exist. This way, "make all" in a freshly-cloned Git copy will automagically build the _repo_ref repo, which is needed for the svnreplay-based tests. --- tests/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index a819e44..1f3684d 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -15,9 +15,12 @@ all: $(DEFAULT_TEST_TARGET) test: pre-clean $(TEST_LINT) $(MAKE) aggregate-results-and-cleanup -$(T): +$(T): _repo_ref @echo "*** $@ ***"; '$(SHELL_PATH_SQ)' $@ $(SVN2SVN_TEST_OPTS) +_repo_ref: + ./make-ref-repo.sh + pre-clean: $(RM) -r test-results -- 2.43.0