From c62c2c4ff232215bc37b64c635ecaadb01265828 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 20 Dec 2011 20:27:09 +0100 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ tests/primary-prefix-couples-force-valid.test | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) 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' -- 2.47.2