Try to fix test failure on buildbot.

llvm-svn: 191259
This commit is contained in:
Rui Ueyama 2013-09-24 00:47:31 +00:00
parent 410393a15d
commit 12c0d773fe
1 changed files with 1 additions and 1 deletions

View File

@ -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) {