diff options
author | Edwin Vane <edwin.vane@intel.com> | 2013-07-11 15:54:06 +0000 |
---|---|---|
committer | Edwin Vane <edwin.vane@intel.com> | 2013-07-11 15:54:06 +0000 |
commit | af1e77eec3a7abae7f0823e74d3f2986a1358be5 (patch) | |
tree | 4a64112ac641308dc753d2a4a9203be844aeac4c /clang-tools-extra | |
parent | bce399216c1a02cd04dc582dbf79bd7f5e859b98 (diff) | |
download | bcm5719-llvm-af1e77eec3a7abae7f0823e74d3f2986a1358be5.tar.gz bcm5719-llvm-af1e77eec3a7abae7f0823e74d3f2986a1358be5.zip |
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
Diffstat (limited to 'clang-tools-extra')
3 files changed, 27 insertions, 0 deletions
diff --git a/clang-tools-extra/unittests/cpp11-migrate/IncludeExcludeTest.cpp b/clang-tools-extra/unittests/cpp11-migrate/IncludeExcludeTest.cpp index 960e3122911..7aea471c21a 100644 --- a/clang-tools-extra/unittests/cpp11-migrate/IncludeExcludeTest.cpp +++ b/clang-tools-extra/unittests/cpp11-migrate/IncludeExcludeTest.cpp @@ -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" diff --git a/clang-tools-extra/unittests/cpp11-migrate/PerfSupportTest.cpp b/clang-tools-extra/unittests/cpp11-migrate/PerfSupportTest.cpp index 8fe88f5a13e..bbfb08e217c 100644 --- a/clang-tools-extra/unittests/cpp11-migrate/PerfSupportTest.cpp +++ b/clang-tools-extra/unittests/cpp11-migrate/PerfSupportTest.cpp @@ -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"
diff --git a/clang-tools-extra/unittests/cpp11-migrate/TransformTest.cpp b/clang-tools-extra/unittests/cpp11-migrate/TransformTest.cpp index 5f165c4c15a..dd794f2eb15 100644 --- a/clang-tools-extra/unittests/cpp11-migrate/TransformTest.cpp +++ b/clang-tools-extra/unittests/cpp11-migrate/TransformTest.cpp @@ -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" |