From: Jim Meyering Date: Sun, 16 Sep 2007 09:20:55 +0000 (+0200) Subject: tests/check.mk (vc_exe_in_TESTS): Don't rely on the value of $(TESTS), X-Git-Tag: v6.9.89~107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed2a9e96378476a0af467a9535235c14fa732437;p=thirdparty%2Fcoreutils.git tests/check.mk (vc_exe_in_TESTS): Don't rely on the value of $(TESTS), so that "make check TESTS=test-name" works once again. Signed-off-by: Jim Meyering --- diff --git a/ChangeLog b/ChangeLog index 5ecf7592de..097c2b4815 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-09-16 Jim Meyering + * tests/check.mk (vc_exe_in_TESTS): Don't rely on the value of + $(TESTS), so that "make check TESTS=test-name" works once again. + * tests/CuTmpdir.pm: Use File::Find + chmod syscall, not chmod -R. Revamp most test scripts. diff --git a/tests/check.mk b/tests/check.mk index d358f18cf6..91184cc006 100644 --- a/tests/check.mk +++ b/tests/check.mk @@ -15,12 +15,17 @@ # along with this program. If not, see . # 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