From: Eric Blake Date: Sat, 29 Sep 2007 14:56:50 +0000 (-0600) Subject: Fix testsuite on cygwin. X-Git-Tag: v6.9.89~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17f0d568d3b95576de88d82b1722aa8adb3d0106;p=thirdparty%2Fcoreutils.git Fix testsuite on cygwin. * check.mk (%.log): Also allow suffix-less tests, on platforms where $(EXEEXT) is not empty. Signed-off-by: Eric Blake --- diff --git a/build-aux/ChangeLog b/build-aux/ChangeLog index 37f70fede8..704f6babb6 100644 --- a/build-aux/ChangeLog +++ b/build-aux/ChangeLog @@ -1,3 +1,8 @@ +2007-09-29 Eric Blake + + * check.mk (%.log): Also allow suffix-less tests, on platforms + where $(EXEEXT) is not empty. + 2007-09-15 Jim Meyering * vc-list-files: Remove mercurial support. diff --git a/build-aux/check.mk b/build-aux/check.mk index 2f44ec7ff6..2a00aa201c 100644 --- a/build-aux/check.mk +++ b/build-aux/check.mk @@ -97,6 +97,10 @@ rm $@-t %.log: %$(EXEEXT) @$(am__check_pre) $${dir}$< $(am__check_post) +# The exact same commands, but for scripts without extension. +%.log: % + @$(am__check_pre) $${dir}$< $(am__check_post) + TEST_LOGS ?= $(TESTS:.test=.log) TEST_SUITE_LOG = test-suite.log