#include "snapshot/sanitized/sanitization_information.h"
#include <iterator>
#include "build/build_config.h"
#include "gtest/gtest.h"
#include "util/misc/from_pointer_cast.h"
#include "util/process/process_memory_linux.h"
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#include "test/linux/fake_ptrace_connection.h"
#endif
namespace crashpad {
namespace test {
namespace {
class AllowedAnnotationsTest : public testing::Test { … };
const char* const kEmptyAllowedAnnotations[] = …;
TEST_F(AllowedAnnotationsTest, EmptyAllowedAnnotations) { … }
const char* const kNonEmptyAllowedAnnotations[] = …;
TEST_F(AllowedAnnotationsTest, NonEmptyAllowedAnnotations) { … }
}
}
}