summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2023-05-09 06:23:55 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-09 07:25:37 +0000
commitd4e78b7d757ccf1225bcd87d44ade39d1ce38586 (patch)
treee8f6d790c53d2ec93faa7a350509cb6d5e5d2249 /buildscripts
parenteabad5801309af6d80f91f01557b7f3d0b50fab3 (diff)
downloadmongo-d4e78b7d757ccf1225bcd87d44ade39d1ce38586.tar.gz
SERVER-76651 Switch to using db-contrib-tool symbolize command in resmoke
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokelib/cli.py2
-rw-r--r--buildscripts/resmokelib/parser.py2
-rw-r--r--buildscripts/resmokelib/testing/symbolizer_service.py4
3 files changed, 3 insertions, 5 deletions
diff --git a/buildscripts/resmokelib/cli.py b/buildscripts/resmokelib/cli.py
index 1a72d6e6389..fe3cdeeae65 100644
--- a/buildscripts/resmokelib/cli.py
+++ b/buildscripts/resmokelib/cli.py
@@ -25,7 +25,7 @@ def main(argv):
usage="Resmoke is MongoDB's correctness testing orchestrator.\n"
"For more information, see the help message for each subcommand.\n"
"For example: resmoke.py run -h\n"
- "Note: bisect and setup-multiversion subcommands have been moved to db-contrib-tool (https://github.com/10gen/db-contrib-tool#readme).\n"
+ "Note: bisect, setup-multiversion and symbolize subcommands have been moved to db-contrib-tool (https://github.com/10gen/db-contrib-tool#readme).\n"
)
try:
metrics_client = get_mongo_metrics_client()
diff --git a/buildscripts/resmokelib/parser.py b/buildscripts/resmokelib/parser.py
index e09b76ec292..80e647a9906 100644
--- a/buildscripts/resmokelib/parser.py
+++ b/buildscripts/resmokelib/parser.py
@@ -11,7 +11,6 @@ from buildscripts.resmokelib.hang_analyzer import HangAnalyzerPlugin
from buildscripts.resmokelib.multiversion import MultiversionPlugin
from buildscripts.resmokelib.powercycle import PowercyclePlugin
from buildscripts.resmokelib.run import RunPlugin
-from buildscripts.resmokelib.symbolizer import SymbolizerPlugin
from buildscripts.resmokelib.undodb import UndoDbPlugin
_PLUGINS = [
@@ -19,7 +18,6 @@ _PLUGINS = [
HangAnalyzerPlugin(),
UndoDbPlugin(),
PowercyclePlugin(),
- SymbolizerPlugin(),
GenerateFCVConstantsPlugin(),
DiscoveryPlugin(),
MultiversionPlugin(),
diff --git a/buildscripts/resmokelib/testing/symbolizer_service.py b/buildscripts/resmokelib/testing/symbolizer_service.py
index 7f02d164919..86d190640e0 100644
--- a/buildscripts/resmokelib/testing/symbolizer_service.py
+++ b/buildscripts/resmokelib/testing/symbolizer_service.py
@@ -318,8 +318,8 @@ class SymbolizerService:
"""
symbolizer_args = [
- "python",
- "buildscripts/mongosymb.py",
+ "db-contrib-tool",
+ "symbolize",
"--client-secret",
_config.SYMBOLIZER_CLIENT_SECRET,
"--client-id",