Files
mongo/buildscripts/resmokelib/testing/testcases/cpp_unittest.py
Trevor Guidry 2c6a074835 SERVER-120178 add unixDomainSocket support to resmoke (#49009)
GitOrigin-RevId: 8fd583254ad9b50caada6a025661200141608b8e
2026-03-06 16:21:18 +00:00

40 lines
1.3 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):
# Merge fixture environment variables into program_options
program_options = self.program_options.copy()
self._merge_fixture_environment_variables(program_options)
return core.programs.make_process(
self.logger,
[self.program_executable, "--enhancedReporter=false"],
**program_options,
)