Files
mongo/buildscripts/resmokelib/testing/testcases/cpp_unittest.py
Alex Li 88deba90af SERVER-115106 Port to GoogleTest (#45689)
Co-authored-by: James Bronsted <james.bronsted@mongodb.com>
Co-authored-by: Billy Donahue <billy.donahue@mongodb.com>
Co-authored-by: James Bronsted <32047428+jpbronsted@users.noreply.github.com>
Co-authored-by: Sean Lyons <sean.lyons@mongodb.com>
Co-authored-by: Billy Donahue <BillyDonahue@users.noreply.github.com>
Co-authored-by: Ronald Steinke <167128994+rsteinkeX@users.noreply.github.com>
GitOrigin-RevId: 44975de45e91c0666e545b65519822f7b6a4ad15
2025-12-29 22:43:55 +00:00

36 lines
1.1 KiB
Python

"""The unittest.TestCase for C++ unit tests."""
from typing import Optional
from buildscripts.resmokelib import core, logging, utils
from buildscripts.resmokelib.testing.testcases import interface
class CPPUnitTestCase(interface.ProcessTestCase):
"""A C++ unit test to execute."""
REGISTERED_NAME = "cpp_unit_test"
def __init__(
self,
logger: logging.Logger,
program_executables: list[str],
program_options: Optional[dict] = None,
):
"""Initialize the CPPUnitTestCase with the executable to run."""
assert len(program_executables) == 1
interface.ProcessTestCase.__init__(self, logger, "C++ unit test", program_executables[0])
self.program_executable = program_executables[0]
self.program_options = utils.default_if_none(program_options, {}).copy()
interface.append_process_tracking_options(self.program_options, self._id)
def _make_process(self):
return core.programs.make_process(
self.logger,
[self.program_executable, "--enhancedReporter=false"],
**self.program_options,
)