summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib
diff options
context:
space:
mode:
authorDaniel Moody <daniel.moody@mongodb.com>2022-12-05 14:04:38 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-12-05 14:38:52 +0000
commitfb23430fd306ff967e64a06c0dabe951927a02ea (patch)
tree0e42548dcd15790bef33d3d4876c96019d085a59 /buildscripts/resmokelib
parentf8d272de5c8cb9c675a41e72ce58312e9e5c9644 (diff)
downloadmongo-fb23430fd306ff967e64a06c0dabe951927a02ea.tar.gz
SERVER-62995 SERVER-62074 update pretty printers to work with v4 and add tests
Diffstat (limited to 'buildscripts/resmokelib')
-rw-r--r--buildscripts/resmokelib/hang_analyzer/dumper.py2
-rw-r--r--buildscripts/resmokelib/symbolizer/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/resmokelib/hang_analyzer/dumper.py b/buildscripts/resmokelib/hang_analyzer/dumper.py
index 8f8fb7efdcc..2b31514a007 100644
--- a/buildscripts/resmokelib/hang_analyzer/dumper.py
+++ b/buildscripts/resmokelib/hang_analyzer/dumper.py
@@ -331,7 +331,7 @@ class GDBDumper(Dumper):
def _find_debugger(self, debugger):
"""Find the installed debugger."""
- return find_program(debugger, ['/opt/mongodbtoolchain/v3/bin', '/usr/bin'])
+ return find_program(debugger, ['/opt/mongodbtoolchain/v4/bin', '/usr/bin'])
def _prefix(self):
"""Return the commands to set up a debugger process."""
diff --git a/buildscripts/resmokelib/symbolizer/__init__.py b/buildscripts/resmokelib/symbolizer/__init__.py
index 365263210de..4381fa97a88 100644
--- a/buildscripts/resmokelib/symbolizer/__init__.py
+++ b/buildscripts/resmokelib/symbolizer/__init__.py
@@ -21,7 +21,7 @@ _MESSAGE = """TODO"""
_COMMAND = "symbolize"
-DEFAULT_SYMBOLIZER_LOCATION = "/opt/mongodbtoolchain/v3/bin/llvm-symbolizer"
+DEFAULT_SYMBOLIZER_LOCATION = "/opt/mongodbtoolchain/v4/bin/llvm-symbolizer"
class Symbolizer(Subcommand):