mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
f715bd8ba9
PiperOrigin-RevId: 561575508 Change-Id: Ifc9a678b6a6cbcd892a1f8710b941514eb1d9764
12 lines
160 B
C++
12 lines
160 B
C++
#include "sandboxed_api/config.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
namespace sapi {
|
|
|
|
bool IsCoverageRun() {
|
|
return getenv("COVERAGE") != nullptr;
|
|
}
|
|
|
|
} // namespace sapi
|