mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
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
|