mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Merge pull request #67223 from ClickHouse/fix-test-pkill
Fix flaky `test_pkill_query_log` (tsan)
This commit is contained in:
commit
8943561372
@ -60,6 +60,13 @@ def test_pkill(started_node):
|
|||||||
|
|
||||||
|
|
||||||
def test_pkill_query_log(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"]:
|
for signal in ["SEGV", "4"]:
|
||||||
# force create query_log if it was not created
|
# force create query_log if it was not created
|
||||||
started_node.query("SYSTEM FLUSH LOGS")
|
started_node.query("SYSTEM FLUSH LOGS")
|
||||||
|
Loading…
Reference in New Issue
Block a user