diff options
author | Jim Meyering <jim@meyering.net> | 2007-09-16 11:20:55 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-09-16 11:29:57 +0200 |
commit | ed2a9e96378476a0af467a9535235c14fa732437 (patch) | |
tree | 8707deb4e3fc483531f185224f6dfefa2283d08c /tests/check.mk | |
parent | d423f4a14b19a9771510cc753a0781dbbe1bf0ff (diff) | |
download | coreutils-ed2a9e96378476a0af467a9535235c14fa732437.tar.xz |
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 <jim@meyering.net>
Diffstat (limited to 'tests/check.mk')
-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 |