Skip send_crash_reports test with TSAN

This commit is contained in:
Ivan Lezhankin 2021-02-08 18:46:48 +03:00
parent a287443438
commit 00bb0e6b35

View File

@ -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