From af1e77eec3a7abae7f0823e74d3f2986a1358be5 Mon Sep 17 00:00:00 2001 From: Edwin Vane Date: Thu, 11 Jul 2013 15:54:06 +0000 Subject: [PATCH] cpp11-migrate: Add missing file headers in unit tests Differential: http://llvm-reviews.chandlerc.com/D1124 Author: Guillaume Papin llvm-svn: 186093 --- .../unittests/cpp11-migrate/IncludeExcludeTest.cpp | 9 +++++++++ .../unittests/cpp11-migrate/PerfSupportTest.cpp | 9 +++++++++ .../unittests/cpp11-migrate/TransformTest.cpp | 9 +++++++++ 3 files changed, 27 insertions(+) diff --git a/clang-tools-extra/unittests/cpp11-migrate/IncludeExcludeTest.cpp b/clang-tools-extra/unittests/cpp11-migrate/IncludeExcludeTest.cpp index 960e3122911d..7aea471c21a0 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 8fe88f5a13e9..bbfb08e217c7 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 5f165c4c15ad..dd794f2eb151 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"