Fix flaky test_pkill_query_log (tsan)

This commit is contained in:
serxa 2024-07-26 14:26:37 +00:00
parent a1f2c815f4
commit 1e12ac577a

View File

@ -60,6 +60,13 @@ def test_pkill(started_node):
def test_pkill_query_log(started_node):
if (
started_node.is_built_with_thread_sanitizer()
or started_node.is_built_with_address_sanitizer()
or started_node.is_built_with_memory_sanitizer()
):
pytest.skip("doesn't fit in timeouts for stacktrace generation")
for signal in ["SEGV", "4"]:
# force create query_log if it was not created
started_node.query("SYSTEM FLUSH LOGS")