summaryrefslogtreecommitdiff
path: root/lld/unittests
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2016-03-21 18:32:35 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2016-03-21 18:32:35 +0000
commitbda29bb3ca10939b7473ff55049a97a988e231ba (patch)
tree2748a795f4e04e5c2350d80aaba9857cead071db /lld/unittests
parentba8649ec6589beb6e5f1053874be2025829cc484 (diff)
Fix Clang-tidy modernize-deprecated-headers warnings; other minor fixes.
Differential revision: http://reviews.llvm.org/D18232
Diffstat (limited to 'lld/unittests')
-rw-r--r--lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp9
-rw-r--r--lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp2
-rw-r--r--lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp11
3 files changed, 0 insertions, 22 deletions
diff --git a/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp b/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
index 6827a732fbd..1a081d04658 100644
--- a/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
+++ b/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
@@ -10,8 +10,6 @@
#include "gtest/gtest.h"
#include "../../lib/ReaderWriter/MachO/MachONormalizedFile.h"
#include "llvm/Support/MachO.h"
-#include <assert.h>
-#include <vector>
using llvm::StringRef;
using llvm::MemoryBuffer;
@@ -75,7 +73,6 @@ TEST(BinaryReaderTest, empty_obj_x86_64) {
EXPECT_TRUE(f->undefinedSymbols.empty());
}
-
TEST(BinaryReaderTest, empty_obj_x86) {
FILEBYTES = {
0xce, 0xfa, 0xed, 0xfe, 0x07, 0x00, 0x00, 0x00,
@@ -107,7 +104,6 @@ TEST(BinaryReaderTest, empty_obj_x86) {
EXPECT_TRUE(f->undefinedSymbols.empty());
}
-
TEST(BinaryReaderTest, empty_obj_ppc) {
FILEBYTES = {
0xfe, 0xed, 0xfa, 0xce, 0x00, 0x00, 0x00, 0x12,
@@ -139,7 +135,6 @@ TEST(BinaryReaderTest, empty_obj_ppc) {
EXPECT_TRUE(f->undefinedSymbols.empty());
}
-
TEST(BinaryReaderTest, empty_obj_armv7) {
FILEBYTES = {
0xce, 0xfa, 0xed, 0xfe, 0x0c, 0x00, 0x00, 0x00,
@@ -326,7 +321,6 @@ TEST(BinaryReaderTest, hello_obj_x86_64) {
EXPECT_EQ(printfLabel.scope, SymbolScope(N_EXT));
}
-
TEST(BinaryReaderTest, hello_obj_x86) {
FILEBYTES = {
0xCE, 0xFA, 0xED, 0xFE, 0x07, 0x00, 0x00, 0x00,
@@ -458,7 +452,6 @@ TEST(BinaryReaderTest, hello_obj_x86) {
EXPECT_EQ(printfLabel.scope, SymbolScope(N_EXT));
}
-
TEST(BinaryReaderTest, hello_obj_armv7) {
FILEBYTES = {
0xCE, 0xFA, 0xED, 0xFE, 0x0C, 0x00, 0x00, 0x00,
@@ -600,7 +593,6 @@ TEST(BinaryReaderTest, hello_obj_armv7) {
EXPECT_EQ(printfLabel.scope, SymbolScope(N_EXT));
}
-
TEST(BinaryReaderTest, hello_obj_ppc) {
FILEBYTES = {
0xFE, 0xED, 0xFA, 0xCE, 0x00, 0x00, 0x00, 0x12,
@@ -744,5 +736,4 @@ TEST(BinaryReaderTest, hello_obj_ppc) {
EXPECT_EQ(printfLabel.scope, SymbolScope(N_EXT));
writeBinary(*f, "/tmp/foo.o");
-
}
diff --git a/lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp b/lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp
index 7def86c8792..af0be85b83e 100644
--- a/lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp
+++ b/lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp
@@ -10,8 +10,6 @@
#include "gtest/gtest.h"
#include "../../lib/ReaderWriter/MachO/MachONormalizedFile.h"
#include "llvm/Support/MachO.h"
-#include <assert.h>
-#include <vector>
using llvm::ErrorOr;
diff --git a/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp b/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
index d13e360b41a..6b75c3480c9 100644
--- a/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
+++ b/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
@@ -10,8 +10,6 @@
#include "gtest/gtest.h"
#include "../../lib/ReaderWriter/MachO/MachONormalizedFile.h"
#include "llvm/Support/MachO.h"
-#include <assert.h>
-#include <vector>
using llvm::StringRef;
using llvm::MemoryBuffer;
@@ -21,7 +19,6 @@ using lld::mach_o::normalized::Symbol;
using lld::mach_o::normalized::Section;
using lld::mach_o::normalized::Relocation;
-
static std::unique_ptr<NormalizedFile> fromYAML(StringRef str) {
std::unique_ptr<MemoryBuffer> mb(MemoryBuffer::getMemBuffer(str));
ErrorOr<std::unique_ptr<NormalizedFile>> r
@@ -36,7 +33,6 @@ static void toYAML(const NormalizedFile &f, std::string &out) {
EXPECT_TRUE(!ec);
}
-
// ppc is no longer supported, but it is here to test endianness handling.
TEST(ObjectFileYAML, empty_ppc) {
std::unique_ptr<NormalizedFile> f = fromYAML(
@@ -134,7 +130,6 @@ TEST(ObjectFileYAML, empty_armv7s) {
EXPECT_TRUE(f->undefinedSymbols.empty());
}
-
TEST(ObjectFileYAML, roundTrip) {
std::string intermediate;
{
@@ -157,7 +152,6 @@ TEST(ObjectFileYAML, roundTrip) {
}
}
-
TEST(ObjectFileYAML, oneSymbol) {
std::unique_ptr<NormalizedFile> f = fromYAML(
"---\n"
@@ -186,7 +180,6 @@ TEST(ObjectFileYAML, oneSymbol) {
EXPECT_EQ((uint64_t)sym.value, 0x100ULL);
}
-
TEST(ObjectFileYAML, oneSection) {
std::unique_ptr<NormalizedFile> f = fromYAML(
"---\n"
@@ -220,7 +213,6 @@ TEST(ObjectFileYAML, oneSection) {
EXPECT_EQ((int)(sect.content[1]), 0x90);
}
-
TEST(ObjectFileYAML, hello_x86_64) {
std::unique_ptr<NormalizedFile> f = fromYAML(
"---\n"
@@ -349,7 +341,6 @@ TEST(ObjectFileYAML, hello_x86_64) {
EXPECT_EQ((uint64_t)sym3.value, 0x0ULL);
}
-
TEST(ObjectFileYAML, hello_x86) {
std::unique_ptr<NormalizedFile> f = fromYAML(
"---\n"
@@ -607,8 +598,6 @@ TEST(ObjectFileYAML, hello_armv6) {
EXPECT_EQ((uint64_t)sym2.value, 0x0ULL);
}
-
-
TEST(ObjectFileYAML, hello_armv7) {
std::unique_ptr<NormalizedFile> f = fromYAML(
"---\n"