From 99cd7108d3c589fb8ebbd636c98881cfee30e868 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Tue, 15 May 2018 21:57:29 +0200 Subject: [PATCH] tests: better check for python libpath Find also python3 lvm.so name. And ATM just run a single test, otherwise we get too many cores. --- test/api/pytest.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/api/pytest.sh b/test/api/pytest.sh index 258176874..bf31b39ca 100644 --- a/test/api/pytest.sh +++ b/test/api/pytest.sh @@ -31,7 +31,7 @@ aux prepare_dmeventd #Locate the python binding library to use. if [[ -n "${abs_top_builddir+varset}" ]]; then - python_lib=($(find "$abs_top_builddir" -name lvm.so)) + python_lib=($(find "$abs_top_builddir" -name lvm*.so)) if [[ ${#python_lib[*]} -ne 1 ]]; then if [[ ${#python_lib[*]} -gt 1 ]]; then # Unable to test python bindings if multiple libraries found: @@ -58,6 +58,8 @@ aux prepare_pvs 6 PY_UNIT_PVS=$(cat DEVICES) export PY_UNIT_PVS +python_lvm_unit.py -v -f TestLvm.test_lv_persistence +exit #python_lvm_unit.py -v -f # Run individual tests for shorter error trace -- 2.43.5