From 28db74b2f02a1d20ff2580a94a614c6e482d1593 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 11 Jun 2014 22:23:45 +0000 Subject: [PATCH] Fix test build on windows. llvm-svn: 210714 --- lld/unittests/DriverTests/InputGraphTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.7.4