diff options
author | Daniel Pinto <danielpinto52@gmail.com> | 2020-07-17 18:22:51 +0100 |
---|---|---|
committer | Daniel Pinto <danielpinto52@gmail.com> | 2020-07-17 18:45:57 +0100 |
commit | 29307c0625fd6a95080d341b15646a4cd55b4178 (patch) | |
tree | bf8c816ec567ac96bb0cf5cbd18db53ee4df72e4 /src/test/test_parseconf.sh | |
parent | a7226ca06e20356abb057c29416a9ad969c8d29d (diff) | |
download | tor-29307c0625fd6a95080d341b15646a4cd55b4178.tar.gz tor-29307c0625fd6a95080d341b15646a4cd55b4178.zip |
Add running glibc version to the log. #40047
Also adds the compiled and running glibc version when using the
--library-versions flag.
Diffstat (limited to 'src/test/test_parseconf.sh')
-rwxr-xr-x | src/test/test_parseconf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_parseconf.sh b/src/test/test_parseconf.sh index 4fe27d9f5d..c02b8b23c0 100755 --- a/src/test/test_parseconf.sh +++ b/src/test/test_parseconf.sh @@ -202,7 +202,7 @@ STANDARD_LIBS="libevent\\|openssl\\|zlib" # shellcheck disable=SC2018,SC2019 TOR_LIBS_ENABLED="$("$TOR_BINARY" --verify-config \ -f "$EMPTY" --defaults-torrc "$EMPTY" \ - | sed -n 's/.* Tor .* running on .* with\(.*\)\./\1/p' \ + | sed -n 's/.* Tor .* running on .* with\(.*\) and .* .* as libc\./\1/p' \ | tr 'A-Z' 'a-z' | tr ',' '\n' \ | grep -v "$STANDARD_LIBS" | grep -v "n/a" \ | sed 's/\( and\)* \(lib\)*\([a-z0-9]*\) .*/\3/' \ |