summaryrefslogtreecommitdiff
path: root/evergreen
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2022-03-03 15:00:52 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-03-03 16:02:35 +0000
commit65cf760916f7fe0e3d06f5e06a53e0a96b24d947 (patch)
treebc32b785c7db5c1b753d3e02721c502c21635907 /evergreen
parentc9a74181ade07e824a0b6bec6913d27c56e8bf21 (diff)
downloadmongo-65cf760916f7fe0e3d06f5e06a53e0a96b24d947.tar.gz
SERVER-61032 Ensure all current references to GDB are for v3 toolchain
Diffstat (limited to 'evergreen')
-rw-r--r--evergreen/failed_unittests_gather.sh2
-rw-r--r--evergreen/hang_analyzer.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/evergreen/failed_unittests_gather.sh b/evergreen/failed_unittests_gather.sh
index 7e5edf7797b..9c61c14fef0 100644
--- a/evergreen/failed_unittests_gather.sh
+++ b/evergreen/failed_unittests_gather.sh
@@ -19,7 +19,7 @@ for core_file in $core_files; do
# A core file name does not always have the executable name that generated it.
# See http://stackoverflow.com/questions/34801353/core-dump-filename-gets-thread-name-instead-of-executable-name-with-core-pattern
# On platforms with GDB, we get the binary name from core file
- gdb=/opt/mongodbtoolchain/gdb/bin/gdb
+ gdb=/opt/mongodbtoolchain/v3/bin/gdb
if [ -f $gdb ]; then
binary_file=$($gdb -batch --quiet -ex "core $core_file" 2> /dev/null | grep "Core was generated" | cut -f2 -d "\`" | cut -f1 -d "'" | cut -f1 -d " ")
binary_file_locations=$binary_file
diff --git a/evergreen/hang_analyzer.sh b/evergreen/hang_analyzer.sh
index 104f9b5b30a..980336c4d5d 100644
--- a/evergreen/hang_analyzer.sh
+++ b/evergreen/hang_analyzer.sh
@@ -14,8 +14,8 @@ else
fi
activate_venv
-echo "Calling the hang analyzer: PATH=\"/opt/mongodbtoolchain/gdb/bin:$PATH\" $python buildscripts/resmoke.py hang-analyzer $hang_analyzer_option"
-PATH="/opt/mongodbtoolchain/gdb/bin:$PATH" $python buildscripts/resmoke.py hang-analyzer $hang_analyzer_option
+echo "Calling the hang analyzer: PATH=\"/opt/mongodbtoolchain/v3/bin:$PATH\" $python buildscripts/resmoke.py hang-analyzer $hang_analyzer_option"
+PATH="/opt/mongodbtoolchain/v3/bin:$PATH" $python buildscripts/resmoke.py hang-analyzer $hang_analyzer_option
# Call hang analyzer for tasks that are running remote mongo processes
if [ -n "${private_ip_address}" ]; then