summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2023-05-08 10:37:08 +0300
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-08 08:15:37 +0000
commitdcebc8d16931e364e8a1fdf390dfff1dad6cf119 (patch)
treec497f319e82f01ae1d18310658b8c7e026aa2fe3 /buildscripts/resmokelib
parent73013a50d60d58c9525df3e1e5b3c6ace21cb7f6 (diff)
downloadmongo-dcebc8d16931e364e8a1fdf390dfff1dad6cf119.tar.gz
Revert "SERVER-76651 Switch to using db-contrib-tool symbolize command in resmoke"
This reverts commit b7cd217d0124e3c766038d9e2dd6b2ad7c2a5a6d.
Diffstat (limited to 'buildscripts/resmokelib')
-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, 5 insertions, 3 deletions
diff --git a/buildscripts/resmokelib/cli.py b/buildscripts/resmokelib/cli.py
index fe3cdeeae65..1a72d6e6389 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, setup-multiversion and symbolize subcommands have been moved to db-contrib-tool (https://github.com/10gen/db-contrib-tool#readme).\n"
+ "Note: bisect and setup-multiversion 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 80e647a9906..e09b76ec292 100644
--- a/buildscripts/resmokelib/parser.py
+++ b/buildscripts/resmokelib/parser.py
@@ -11,6 +11,7 @@ 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 = [
@@ -18,6 +19,7 @@ _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 86d190640e0..7f02d164919 100644
--- a/buildscripts/resmokelib/testing/symbolizer_service.py
+++ b/buildscripts/resmokelib/testing/symbolizer_service.py
@@ -318,8 +318,8 @@ class SymbolizerService:
"""
symbolizer_args = [
- "db-contrib-tool",
- "symbolize",
+ "python",
+ "buildscripts/mongosymb.py",
"--client-secret",
_config.SYMBOLIZER_CLIENT_SECRET,
"--client-id",