summaryrefslogtreecommitdiffstats
path: root/lld/unittests/DriverTests/DarwinLdDriverTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lld/unittests/DriverTests/DarwinLdDriverTest.cpp')
-rw-r--r--lld/unittests/DriverTests/DarwinLdDriverTest.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/lld/unittests/DriverTests/DarwinLdDriverTest.cpp b/lld/unittests/DriverTests/DarwinLdDriverTest.cpp
index 2fb4df3612f..70dcba1756a 100644
--- a/lld/unittests/DriverTests/DarwinLdDriverTest.cpp
+++ b/lld/unittests/DriverTests/DarwinLdDriverTest.cpp
@@ -92,16 +92,6 @@ TEST_F(DarwinLdParserTest, DeadStripRootsDylib) {
EXPECT_TRUE(_context.globalsAreDeadStripRoots());
}
-TEST_F(DarwinLdParserTest, ForceLoadArchive) {
- EXPECT_FALSE(parse("ld","-all_load", "foo.o", nullptr));
- EXPECT_TRUE(_context.forceLoadAllArchives());
-}
-
-TEST_F(DarwinLdParserTest, NoForceLoadArchive) {
- EXPECT_FALSE(parse("ld", "foo.o", nullptr));
- EXPECT_FALSE(_context.forceLoadAllArchives());
-}
-
TEST_F(DarwinLdParserTest, Arch) {
EXPECT_FALSE(parse("ld", "-arch", "x86_64", "foo.o", nullptr));
EXPECT_EQ(MachOLinkingContext::arch_x86_64, _context.arch());
OpenPOWER on IntegriCloud