From: Stefano Lattarini Date: Tue, 20 Dec 2011 19:27:09 +0000 (+0100) Subject: tests: fix spurious failure on MSYS/MinGW and Cygwin X-Git-Tag: ng-0.5a~89^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c62c2c4ff232215bc37b64c635ecaadb01265828;p=thirdparty%2Fautomake.git tests: fix spurious failure on MSYS/MinGW and Cygwin * tests/primary-prefix-couples-force-valid.test (Makefile.am): Correctly append $(EXEEXT) to the path of built binaries. --- diff --git a/ChangeLog b/ChangeLog index 80b9556b8..9aac8bda4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-12-20 Stefano Lattarini + + tests: fix spurious failure on MSYS/MinGW and Cygwin + * tests/primary-prefix-couples-force-valid.test (Makefile.am): + Correctly append $(EXEEXT) to the path of built binaries. + 2011-12-16 Stefano Lattarini test defs: hack to support autoconf-wrapper programs diff --git a/tests/primary-prefix-couples-force-valid.test b/tests/primary-prefix-couples-force-valid.test index 405f6060a..9270023fc 100755 --- a/tests/primary-prefix-couples-force-valid.test +++ b/tests/primary-prefix-couples-force-valid.test @@ -47,9 +47,9 @@ installcheck-local: test .PHONY: test test: (cd '$(prefix)' && find .);: For debugging. - ls -l '$(libdir)/foo' - test -f '$(libdir)/foo' - test -x '$(libdir)/foo' + ls -l '$(libdir)/foo$(EXEEXT)' + test -f '$(libdir)/foo$(EXEEXT)' + test -x '$(libdir)/foo$(EXEEXT)' ls -l '$(bindir)/libquux.a' test -f '$(bindir)/libquux.a' ls -l '$(libexecdir)/bar.h'