From 6b120d0a641c5ac33b77f29020498866928875fc Mon Sep 17 00:00:00 2001 From: David Zafman Date: Mon, 11 Feb 2019 16:22:40 -0800 Subject: [PATCH] test: run-standalone.sh set local library location so mgr can find librados.so This caused qa/standalone/misc/test-ceph-helpers.sh to fail "MGR_MODULE_DEPENDENCY 8 mgr modules have failed dependencies" Fixes: http://tracker.ceph.com/issues/38262 Signed-off-by: David Zafman (cherry picked from commit 8bc623b9492a3a80642b0497654779d631f360b9) Conflicts: qa/run-standalone.sh : Resolved for LD_LIBRARY_PATH --- qa/run-standalone.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/run-standalone.sh b/qa/run-standalone.sh index 2c7ceaa3414..acb486e1a72 100755 --- a/qa/run-standalone.sh +++ b/qa/run-standalone.sh @@ -36,6 +36,8 @@ trap finish TERM HUP INT PATH=$(pwd)/bin:$PATH +export LD_LIBRARY_PATH="$(pwd)/lib" + # TODO: Use getops dryrun=false if [[ "$1" = "--dry-run" ]]; then -- 2.47.3