diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check.mk | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/check.mk b/tests/check.mk index d358f18cf..91184cc00 100644 --- a/tests/check.mk +++ b/tests/check.mk @@ -15,12 +15,17 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # Ensure that all version-controlled executable files are listed in TESTS. +_v = TESTS vc_exe_in_TESTS: Makefile - @if test -d $(top_srcdir)/.git; then \ - echo $(TESTS) | tr -s ' ' '\n' | sort -u > t1; \ + if test -d $(top_srcdir)/.git; then \ + sed -n '/^$(_v) =/,/[^\]$$/p' $(srcdir)/Makefile.am \ + | sed 's/^ *//;/^\$$.*/d;/^$(_v) =/d' \ + | tr -s '\012\\' ' ' | fmt -1 | sort -u > t1 && \ for f in `$(top_srcdir)/build-aux/vc-list-files .`; do \ - test -f "$$f" && test -x "$$f" && echo "$$f"; \ - done | sort -u | diff -u t1 -; \ + test -f "$$f" && test -x "$$f" && echo "$$f"; \ + done | sort -u > t2 && \ + diff -u t1 t2 || exit 1; \ + rm -f t1 t2; \ else :; fi check: vc_exe_in_TESTS |