[openssh-commits] [openssh] branch master updated: Include TCMALLOC_STACKTRACE_METHOD in output.

git+noreply at mindrot.org git+noreply at mindrot.org
Thu Mar 27 22:45:18 AEDT 2025


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

The following commit(s) were added to refs/heads/master by this push:
     new 90a28de0 Include TCMALLOC_STACKTRACE_METHOD in output.
90a28de0 is described below

commit 90a28de0d49570324d1695c0b4686354ef3bcae0
Author: Darren Tucker <dtucker at dtucker.net>
AuthorDate: Thu Mar 27 22:30:40 2025 +1100

    Include TCMALLOC_STACKTRACE_METHOD in output.
    
    If TCMALLOC_STACKTRACE_METHOD happens to be set, include it in the debug
    output to make reproducing test cases easier.
---
 .github/run_test.sh | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/run_test.sh b/.github/run_test.sh
index 17c1731f..ac528094 100755
--- a/.github/run_test.sh
+++ b/.github/run_test.sh
@@ -33,6 +33,12 @@ output_failed_logs() {
 }
 trap output_failed_logs 0
 
+if [ ! -z "${TCMALLOC_STACKTRACE_METHOD}" ]; then
+    echo TCMALLOC_STACKTRACE_METHOD="${TCMALLOC_STACKTRACE_METHOD}"
+    echo export TCMALLOC_STACKTRACE_METHOD
+    export TCMALLOC_STACKTRACE_METHOD
+fi
+
 if [ -z "${LTESTS}" ]; then
     make ${TEST_TARGET} SKIP_LTESTS="${SKIP_LTESTS}"
 else

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list