From: Rafael Espindola Date: Wed, 11 Jun 2014 22:23:45 +0000 (+0000) Subject: Fix test build on windows. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28db74b2f02a1d20ff2580a94a614c6e482d1593;p=platform%2Fupstream%2Fllvm.git Fix test build on windows. llvm-svn: 210714 --- diff --git a/lld/unittests/DriverTests/InputGraphTest.cpp b/lld/unittests/DriverTests/InputGraphTest.cpp index d8275fa..42dfe25 100644 --- a/lld/unittests/DriverTests/InputGraphTest.cpp +++ b/lld/unittests/DriverTests/InputGraphTest.cpp @@ -68,7 +68,7 @@ public: void expectEnd() { ErrorOr file = _graph->getNextFile(); - EXPECT_EQ(InputGraphError::no_more_files, file.getError()); + EXPECT_EQ(file.getError(), InputGraphError::no_more_files); } protected: