mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Skip send_crash_reports test with TSAN
This commit is contained in:
parent
a287443438
commit
00bb0e6b35
@ -24,14 +24,17 @@ def started_node():
|
||||
|
||||
|
||||
def test_send_segfault(started_node, ):
|
||||
if started_node.is_built_with_thread_sanitizer():
|
||||
pytest.skip("doesn't fit in timeouts for stacktrace generation")
|
||||
|
||||
started_node.copy_file_to_container(os.path.join(SCRIPT_DIR, "fake_sentry_server.py"), "/fake_sentry_server.py")
|
||||
started_node.exec_in_container(["bash", "-c", "python3 /fake_sentry_server.py > /fake_sentry_server.log 2>&1"], detach=True, user="root")
|
||||
time.sleep(1)
|
||||
time.sleep(0.5)
|
||||
started_node.exec_in_container(["bash", "-c", "pkill -11 clickhouse"], user="root")
|
||||
|
||||
result = None
|
||||
for attempt in range(1, 6):
|
||||
time.sleep(attempt)
|
||||
time.sleep(0.25 * attempt)
|
||||
result = started_node.exec_in_container(['cat', fake_sentry_server.RESULT_PATH], user='root')
|
||||
if result == 'OK':
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user