mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
disable test under msan
This commit is contained in:
parent
00ce7feafb
commit
f3c81f4c9b
@ -351,14 +351,14 @@ private:
|
||||
}
|
||||
#endif
|
||||
|
||||
/// Send crash report to developers (if configured)
|
||||
if (sig != SanitizerTrap)
|
||||
SentryWriter::onFault(sig, error_message, stack_trace);
|
||||
|
||||
/// Write crash to system.crash_log table if available.
|
||||
if (collectCrashLog)
|
||||
collectCrashLog(sig, thread_num, query_id, stack_trace);
|
||||
|
||||
/// Send crash report to developers (if configured)
|
||||
if (sig != SanitizerTrap)
|
||||
SentryWriter::onFault(sig, error_message, stack_trace);
|
||||
|
||||
/// When everything is done, we will try to send these error messages to client.
|
||||
if (thread_ptr)
|
||||
thread_ptr->onFatalError();
|
||||
|
@ -24,7 +24,7 @@ def started_node():
|
||||
|
||||
|
||||
def test_send_segfault(started_node):
|
||||
if started_node.is_built_with_thread_sanitizer():
|
||||
if started_node.is_built_with_thread_sanitizer() or started_node.is_built_with_memory_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")
|
||||
|
Loading…
Reference in New Issue
Block a user