summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2013-09-24 00:47:31 +0000
committerRui Ueyama <ruiu@google.com>2013-09-24 00:47:31 +0000
commit12c0d773fe1c85b2d0130bb0f59ae17b0497289c (patch)
treeeeb1cd5af5ea79bafc2482a1252d343f4cfc59a0
parent410393a15d57b3d13aaa43a05f85790de1f369b4 (diff)
downloadbcm5719-llvm-12c0d773fe1c85b2d0130bb0f59ae17b0497289c.tar.gz
bcm5719-llvm-12c0d773fe1c85b2d0130bb0f59ae17b0497289c.zip
Try to fix test failure on buildbot.
llvm-svn: 191259
-rw-r--r--lld/unittests/DriverTests/WinLinkDriverTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/unittests/DriverTests/WinLinkDriverTest.cpp b/lld/unittests/DriverTests/WinLinkDriverTest.cpp
index 30bfee6c550..d0c18617399 100644
--- a/lld/unittests/DriverTests/WinLinkDriverTest.cpp
+++ b/lld/unittests/DriverTests/WinLinkDriverTest.cpp
@@ -83,7 +83,7 @@ TEST_F(WinLinkParserTest, Mllvm) {
EXPECT_FALSE(parse("link.exe", "/mllvm:-debug", "a.obj", nullptr));
const std::vector<const char *> &options = _context.llvmOptions();
EXPECT_EQ(1U, options.size());
- EXPECT_EQ("-debug", options[0]);
+ EXPECT_STREQ("-debug", options[0]);
}
TEST_F(WinLinkParserTest, NoInputFiles) {
OpenPOWER on IntegriCloud