1//===-- sanitizer_test_config.h ---------------------------------*- C++ -*-===//
2//
3// This file is distributed under the University of Illinois Open Source
4// License. See LICENSE.TXT for details.
5//
6//===----------------------------------------------------------------------===//
7//
8// This file is a part of *Sanitizer runtime.
9//
10//===----------------------------------------------------------------------===//
11#if !defined(INCLUDED_FROM_SANITIZER_TEST_UTILS_H)
12# error "This file should be included into sanitizer_test_utils.h only"
13#endif
14
15#ifndef SANITIZER_TEST_CONFIG_H
16#define SANITIZER_TEST_CONFIG_H
17
18#include <vector>
19#include <string>
20#include <map>
21
22#if SANITIZER_USE_DEJAGNU_GTEST
23# include "dejagnu-gtest.h"
24#else
25# include "gtest/gtest.h"
26#endif
27
28#endif  // SANITIZER_TEST_CONFIG_H
29