[lld] r217114 - Fix unit test now that 'ld' is host specific

Nick Kledzik kledzik at apple.com
Wed Sep 3 17:16:04 PDT 2014


Author: kledzik
Date: Wed Sep  3 19:16:04 2014
New Revision: 217114

URL: http://llvm.org/viewvc/llvm-project?rev=217114&view=rev
Log:
Fix unit test now that 'ld' is host specific

Modified:
    lld/trunk/unittests/DriverTests/UniversalDriverTest.cpp

Modified: lld/trunk/unittests/DriverTests/UniversalDriverTest.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/unittests/DriverTests/UniversalDriverTest.cpp?rev=217114&r1=217113&r2=217114&view=diff
==============================================================================
--- lld/trunk/unittests/DriverTests/UniversalDriverTest.cpp (original)
+++ lld/trunk/unittests/DriverTests/UniversalDriverTest.cpp Wed Sep  3 19:16:04 2014
@@ -23,7 +23,7 @@ using namespace llvm;
 using namespace lld;
 
 TEST(UniversalDriver, flavor) {
-  const char *args[] = { "ld" };
+  const char *args[] = { "gnu-ld" };
 
   std::string diags;
   raw_string_ostream os(diags);





More information about the llvm-commits mailing list