summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/testing
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@10gen.com>2020-10-15 09:21:27 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-10-15 13:38:36 +0000
commite62f90245be98c6763ae85441eb6ebd9448bb85c (patch)
treea82326c16f2d6cb57b5abb3aac48be6797022f90 /buildscripts/resmokelib/testing
parent4530bcb094d5017599699a3da074a061a493f2b1 (diff)
downloadmongo-e62f90245be98c6763ae85441eb6ebd9448bb85c.tar.gz
Revert "SERVER-49504: Allow resmoke's mongo shell to log to Jasper"
This reverts commit e9e1635d6c4a37a4f2d8ee20ccfa2c7e916121d6.
Diffstat (limited to 'buildscripts/resmokelib/testing')
-rw-r--r--buildscripts/resmokelib/testing/report.py2
-rw-r--r--buildscripts/resmokelib/testing/testcases/jstest.py3
2 files changed, 1 insertions, 4 deletions
diff --git a/buildscripts/resmokelib/testing/report.py b/buildscripts/resmokelib/testing/report.py
index d16a37fcf23..7dc355a4023 100644
--- a/buildscripts/resmokelib/testing/report.py
+++ b/buildscripts/resmokelib/testing/report.py
@@ -125,8 +125,6 @@ class TestReport(unittest.TestResult): # pylint: disable=too-many-instance-attr
test_info.url_endpoint = url_endpoint
if self.logging_prefix is not None:
test_logger.info(self.logging_prefix)
- # Set job_num in test.
- test.job_num = self.job_num
test.override_logger(test_logger)
test_info.start_time = time.time()
diff --git a/buildscripts/resmokelib/testing/testcases/jstest.py b/buildscripts/resmokelib/testing/testcases/jstest.py
index 1a1658dd452..b79a1c89d2c 100644
--- a/buildscripts/resmokelib/testing/testcases/jstest.py
+++ b/buildscripts/resmokelib/testing/testcases/jstest.py
@@ -102,8 +102,7 @@ class _SingleJSTestCase(interface.ProcessTestCase):
def _make_process(self):
return core.programs.mongo_shell_program(
- self.logger, job_num=self.fixture.job_num, test_id=self._id,
- executable=self.shell_executable, filename=self.js_filename,
+ self.logger, executable=self.shell_executable, filename=self.js_filename,
connection_string=self.fixture.get_driver_connection_url(), **self.shell_options)