Skip to content

Commit 4f447c4

Browse files
authored
Merge pull request #23541 from dotnwat/ubsan-suppress-ducktape
test: add ubsan suppression to redpanda invocation
2 parents ee95e0c + 35b3230 commit 4f447c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/rptest/tests/redpanda_binary_test.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ def __init__(self, test_context):
2525

2626
@cluster(num_nodes=1, check_allowed_error_logs=False)
2727
def test_version(self):
28-
version_cmd = f"{self.redpanda.find_binary('redpanda')} --version"
28+
env_preamble = self.redpanda.redpanda_env_preamble()
29+
version_cmd = f"{env_preamble} {self.redpanda.find_binary('redpanda')} --version"
2930
version_lines = [
3031
l for l in self.redpanda.nodes[0].account.ssh_capture(version_cmd)
3132
]

0 commit comments

Comments
 (0)