From 3786926703fc592dec5a7fc88ca3bfbc40a27051 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 6 Jun 2026 14:52:02 +1000 Subject: [PATCH] build: add check-progs target for fleettest Build the test-helper programs without running the suite, so an external harness (fleettest.py) can invoke runtests.py with its own options. --- Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.in b/Makefile.in index 699d9956..3eed94e5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -319,6 +319,12 @@ test: check # catch Bash-isms earlier even if we're running on GNU. Of course, we # might lose in the future where POSIX diverges from old sh. +# Build the test-helper programs (CHECK_PROGS) without running the suite, so +# an external harness (e.g. fleettest.py) can invoke runtests.py with its own +# options. +.PHONY: check-progs +check-progs: all $(CHECK_PROGS) $(CHECK_SYMLINKS) + .PHONY: check check: all $(CHECK_PROGS) $(CHECK_SYMLINKS) $(srcdir)/runtests.py --rsync-bin=`pwd`/rsync$(EXEEXT)