mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
10 lines
317 B
C++
10 lines
317 B
C++
#pragma once
|
|
|
|
/// Flush coverage report to file, depending on coverage system
|
|
/// proposed by compiler (llvm for clang and gcov for gcc).
|
|
///
|
|
/// Noop if build without coverage (WITH_COVERAGE=0).
|
|
/// Thread safe (use exclusive lock).
|
|
/// Idempotent, may be called multiple times.
|
|
void dumpCoverageReportIfPossible();
|