Files
mongo/buildscripts/resmokelib/testing/testcases/cpp_unittest.py
katezdb 1dbfe1eb11 SERVER-96966 Remove undoDB integration as unused (#29368)
GitOrigin-RevId: 52080f36791ec1fd187515bf79793b800a98a7c2
2024-12-08 23:46:29 +00:00

32 lines
1002 B
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()
def _make_process(self):
return core.programs.make_process(
self.logger, [self.program_executable], **self.program_options
)