summaryrefslogtreecommitdiff
path: root/test/bin
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2018-01-18 00:43:40 +0100
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2018-01-18 00:46:18 +0100
commitcc285a9fa6dadcffc03350b18c05ce9ee95360d5 (patch)
tree96f97edb589b7a5ef841b7528005b48fdf085447 /test/bin
parentf63e72522f48ec628b44864310307661e393a23b (diff)
downloadexim4-cc285a9fa6dadcffc03350b18c05ce9ee95360d5.tar.gz
Testsuite: Use more force to find postgresql binaries
Diffstat (limited to 'test/bin')
-rw-r--r--test/bin/.gitignore1
-rwxr-xr-xtest/bin/locate.sh32
2 files changed, 0 insertions, 33 deletions
diff --git a/test/bin/.gitignore b/test/bin/.gitignore
index df0219e79..72e8ffc0d 100644
--- a/test/bin/.gitignore
+++ b/test/bin/.gitignore
@@ -1,2 +1 @@
*
-!locate.sh
diff --git a/test/bin/locate.sh b/test/bin/locate.sh
deleted file mode 100755
index 95f0cea7b..000000000
--- a/test/bin/locate.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-[ -d bin.sys ] || mkdir bin.sys
-cd bin.sys
-
-while [ $# -gt 0 ]
-do
- while read d
- do
- if [ -x $d/$1 ]
- then
- rm -f ./$1
- ln -s $d/$1 .
- break
- fi
- done <<-HERE
- /bin
- /usr/bin
- /usr/sbin
- /usr/libexec
- /usr/local/bin
- /usr/lib/postgresql/10/bin
- /usr/lib/postgresql/9.5/bin
- /usr/lib/postgresql/9.4/bin
- /usr/lib/postgresql/9.3/bin
- /usr/lib/postgresql/9.2/bin
- /usr/lib/postgresql/9.1/bin
- /usr/lib/postgresql/9/bin
-HERE
- shift
-done
-