clean up ./tests.sh print (#2984)

pull/2987/head
k4lizen 7 months ago committed by GitHub
parent 87aafd15e7
commit 0095589443
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,8 +1,9 @@
#!/usr/bin/env bash
# Print ldd and so glibc version
echo "Running ldd to see ldd and so glibc version"
ldd --version
# Use ldd to fetch the glibc version.
# Can help with diagnosing CI issues.
glibc_version=$(ldd --version | sed -n '1s/([^)]*)//g; s/.* \([0-9]\+\.[0-9]\+\)$/\1/p')
echo "glibc version: $glibc_version"
# Run integration tests
(cd tests && python3 tests.py $@)

Loading…
Cancel
Save