Revert "add shared library dependency check to distro tests"

This reverts commit d1af35e660.
This commit is contained in:
Adeeb Shihadeh
2026-03-22 16:12:47 -07:00
parent d1af35e660
commit 567fde8231

View File

@@ -36,17 +36,6 @@ docker run --rm -v "$PWD:/work" -w /work wheeltest bash -lc '
module="$(basename "$(dirname "$toml")" | tr "-" "_")" module="$(basename "$(dirname "$toml")" | tr "-" "_")"
python -c "import $module; $module.smoketest()" && echo "$module: OK" python -c "import $module; $module.smoketest()" && echo "$module: OK"
done done
# Verify all binaries and shared libs are self-contained (no missing deps)
echo
echo "Checking shared library dependencies..."
ldd_out=$(find /tmp/venv -type f \( -executable -o -name "*.so*" \) -exec ldd {} + 2>/dev/null) || true
if echo "$ldd_out" | grep -q "not found"; then
echo "ERROR: binaries have missing shared library dependencies:"
echo "$ldd_out" | grep "not found"
exit 1
fi
echo "All shared library deps OK"
' '
echo echo