* 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 80b9556..9aac8bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-12-20 Stefano Lattarini <stefano.lattar...@gmail.com> + + 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 <stefano.lattar...@gmail.com> 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 405f606..9270023 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' -- 1.7.2.3