diff options
author | Rui Ueyama <ruiu@google.com> | 2015-01-15 04:34:31 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2015-01-15 04:34:31 +0000 |
commit | df230b21e3c74b0a056db843978500b312f36025 (patch) | |
tree | 724728d9f1f973fa796d2e1fef632b6a6260e0f5 /lld/unittests/DriverTests/WinLinkDriverTest.cpp | |
parent | 6725a83e84a5e6e6ebc8db6fe9199a431e045d79 (diff) | |
download | bcm5719-llvm-df230b21e3c74b0a056db843978500b312f36025.tar.gz bcm5719-llvm-df230b21e3c74b0a056db843978500b312f36025.zip |
Re-commit r225674: Convert other drivers to use WrapperNode.
The original commit had an issue with Mac OS dylib files. It didn't
handle fat binary dylib files correctly. This patch includes a fix.
A test for that case has already been committed in r225764.
llvm-svn: 226123
Diffstat (limited to 'lld/unittests/DriverTests/WinLinkDriverTest.cpp')
-rw-r--r-- | lld/unittests/DriverTests/WinLinkDriverTest.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lld/unittests/DriverTests/WinLinkDriverTest.cpp b/lld/unittests/DriverTests/WinLinkDriverTest.cpp index e267a534951..e910e404ca3 100644 --- a/lld/unittests/DriverTests/WinLinkDriverTest.cpp +++ b/lld/unittests/DriverTests/WinLinkDriverTest.cpp @@ -698,10 +698,9 @@ TEST_F(WinLinkParserTest, Ignore) { // compatibility with link.exe. EXPECT_TRUE(parse("link.exe", "/nologo", "/errorreport:prompt", "/incremental", "/incremental:no", "/delay:unload", - "/disallowlib:foo", "/pdbaltpath:bar", "/verbose", - "/verbose:icf", "/wx", "/wx:no", "/tlbid:1", - "/tlbout:foo", "/idlout:foo", "/ignore:4000", - "/ignoreidl", "/implib:foo", "/safeseh", + "/disallowlib:foo", "/pdbaltpath:bar", + "/wx", "/wx:no", "/tlbid:1", "/tlbout:foo", "/idlout:foo", + "/ignore:4000", "/ignoreidl", "/implib:foo", "/safeseh", "/safeseh:no", "/functionpadmin", "/maxilksize:1024", "a.obj", nullptr)); EXPECT_EQ("", errorMessage()); |