summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorIan Boros <puppyofkosh@gmail.com>2019-07-19 13:36:54 -0400
committerIan Boros <puppyofkosh@gmail.com>2019-07-19 13:36:54 -0400
commit8fcef35e07a166746ba68cbe2454ec1cc85230d6 (patch)
tree3c6668bd68d91df984bfc76a60f8519d951399ed /buildscripts
parentcf2434708999448d42ef4286fd7e1cc260b2411b (diff)
downloadmongo-8fcef35e07a166746ba68cbe2454ec1cc85230d6.tar.gz
Revert "SERVER-41796 fix lint"
This reverts commit 6924890770f14af361a4949000fe204e5d3bc46e.
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokelib/testing/testcases/cpp_libfuzzer_test.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/buildscripts/resmokelib/testing/testcases/cpp_libfuzzer_test.py b/buildscripts/resmokelib/testing/testcases/cpp_libfuzzer_test.py
index b624e92b0cc..2ac09dd5ab9 100644
--- a/buildscripts/resmokelib/testing/testcases/cpp_libfuzzer_test.py
+++ b/buildscripts/resmokelib/testing/testcases/cpp_libfuzzer_test.py
@@ -8,7 +8,6 @@ from . import interface
from ... import core
from ... import utils
-
class CPPLibfuzzerTestCase(interface.ProcessTestCase):
"""A C++ libfuzzer test to execute."""
@@ -27,15 +26,13 @@ class CPPLibfuzzerTestCase(interface.ProcessTestCase):
os.makedirs(self.corpus_directory, exist_ok=True)
def _make_process(self):
- default_args = [
- self.program_executable, self.corpus_directory, "-max_len=100000", "-rss_limit_mb=5000"
- ]
- return core.programs.make_process(self.logger, default_args, **self.program_options)
+ default_args = [self.program_executable, self.corpus_directory, "-max_len=100000", "-rss_limit_mb=5000"]
+ return core.programs.make_process(self.logger, default_args,
+ **self.program_options)
def _execute(self, process):
"""Run the specified process."""
- self.logger.info("Starting Libfuzzer Test %s...\n%s", self.short_description(),
- process.as_command())
+ self.logger.info("Starting Libfuzzer Test %s...\n%s", self.short_description(), process.as_command())
process.start()
self.logger.info("%s started with pid %s.", self.short_description(), process.pid)
try: