forked from OSchip/llvm-project
21 lines
615 B
C++
21 lines
615 B
C++
//===-- msan_test_config.h ----------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is a part of MemorySanitizer.
|
|
//
|
|
// MemorySanitizer unit tests.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MSAN_TEST_CONFIG_H
|
|
#define MSAN_TEST_CONFIG_H
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#endif // MSAN_TEST_CONFIG_H
|