Skip to content

Commit

Permalink
update print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
smittals2 committed Feb 11, 2025
1 parent 66d3110 commit 62fe5e5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/ci/run_install_shared_and_static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ test_lib_use() {
local LIB_NAME=$2 # name of lib that app should be using, without file extension
local EXPECT_USE_LIB_TYPE=$3 # (".so" or ".a") expected type of lib that app should be using

local LDD_OUTPUT=$(ldd ${APP})
echo "${LDD_OUTPUT}" | grep "${LIB_NAME}" || echo "No matches found"

if ldd ${APP} | grep -q ${LIB_NAME}.so; then
local ACTUAL_USE_LIB_TYPE=.so
else
Expand Down

0 comments on commit 62fe5e5

Please sign in to comment.