sandboxed-api/sandboxed_api/config.cc
Wiktor Garbacz f715bd8ba9 Run more tests with coverage enabled
PiperOrigin-RevId: 561575508
Change-Id: Ifc9a678b6a6cbcd892a1f8710b941514eb1d9764
2023-08-31 00:44:23 -07:00

12 lines
160 B
C++

#include "sandboxed_api/config.h"
#include <cstdlib>
namespace sapi {
bool IsCoverageRun() {
return getenv("COVERAGE") != nullptr;
}
} // namespace sapi