cpp11-migrate: Add missing file headers in unit tests

Differential: http://llvm-reviews.chandlerc.com/D1124
Author: Guillaume Papin <guillaume.papin@epitech.eu>
llvm-svn: 186093
This commit is contained in:
Edwin Vane 2013-07-11 15:54:06 +00:00
parent bce399216c
commit af1e77eec3
3 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,12 @@
//===- cpp11-migrate/IncludeExcludeTest.cpp - IncludeExclude unit tests ---===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "Core/IncludeExcludeInfo.h"
#include "gtest/gtest.h"
#include "llvm/Support/FileSystem.h"

View File

@ -1,3 +1,12 @@
//===- cpp11-migrate/PerfSupportTest.cpp - PerfSupport unit tests --------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "gtest/gtest.h"
#include "Core/PerfSupport.h"

View File

@ -1,3 +1,12 @@
//===- cpp11-migrate/TransformTest.cpp - Transform unit tests -------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "gtest/gtest.h"
#include "Core/Transform.h"
#include "clang/AST/ASTConsumer.h"