summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Zak2013-10-03 16:20:38 +0200
committerKarel Zak2013-10-03 16:20:38 +0200
commitf48145b500cc214746ae5dca997098ad22f41ead (patch)
treec2e9a97c6a036e86e79b58f7317e0cab22d33b44
parentsu: fix caught_signal logic and initialize oldact [coverity scan] (diff)
downloadkernel-qcow2-util-linux-f48145b500cc214746ae5dca997098ad22f41ead.tar.gz
kernel-qcow2-util-linux-f48145b500cc214746ae5dca997098ad22f41ead.tar.xz
kernel-qcow2-util-linux-f48145b500cc214746ae5dca997098ad22f41ead.zip
testsL fix py<libname> check
Reported-by: Bruce Dubbs <bruce.dubbs@gmail.com> Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r--tests/functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functions.sh b/tests/functions.sh
index b9d0ddf54..f210204e2 100644
--- a/tests/functions.sh
+++ b/tests/functions.sh
@@ -245,7 +245,7 @@ function ts_init_suid {
function ts_init_py {
LIBNAME="$1"
- [ -f "$TS_TOPDIR/../$LIBNAME.la" ] || ts_skip "py$LIBNAME not compiled"
+ [ -f "$TS_TOPDIR/../py${LIBNAME}.la" ] || ts_skip "py${LIBNAME} not compiled"
export LD_LIBRARY_PATH="$TS_TOPDIR/../.libs"
export PYTHONPATH="$TS_TOPDIR/../$LIBNAME/python:$TS_TOPDIR/../.libs"