psqlodbc: remove test.sh covered by generic tests

The test only checked for .so file existence, which is already
verified by the generic tests (symlink validity + linked libraries).

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
This commit is contained in:
Alexandru Ardelean
2026-05-04 19:07:14 +03:00
committed by Alexandru Ardelean
parent 048a5088c5
commit da3bf03ebf
-12
View File
@@ -1,12 +0,0 @@
#!/bin/sh
case "$1" in
psqlodbca)
[ -f /usr/lib/psqlodbca.so ] || { echo "FAIL: psqlodbca.so not found"; exit 1; }
echo "psqlodbca OK"
;;
psqlodbcw)
[ -f /usr/lib/psqlodbcw.so ] || { echo "FAIL: psqlodbcw.so not found"; exit 1; }
echo "psqlodbcw OK"
;;
esac