[Lldb-commits] [lldb] bc9b106 - [lldb] Fix an include in HostTest.cpp
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 15 02:12:29 PDT 2021
Author: Pavel Labath
Date: 2021-10-15T11:10:38+02:00
New Revision: bc9b106a5750cf05ddab1dfce2a77d73bcc7d44a
URL: https://github.com/llvm/llvm-project/commit/bc9b106a5750cf05ddab1dfce2a77d73bcc7d44a
DIFF: https://github.com/llvm/llvm-project/commit/bc9b106a5750cf05ddab1dfce2a77d73bcc7d44a.diff
LOG: [lldb] Fix an include in HostTest.cpp
The previous include was too broad, and its better if the host tests do
not depend on non-host libraries.
Added:
Modified:
lldb/unittests/Host/linux/HostTest.cpp
Removed:
################################################################################
diff --git a/lldb/unittests/Host/linux/HostTest.cpp b/lldb/unittests/Host/linux/HostTest.cpp
index 699ccba0a9849..78bbe470d6953 100644
--- a/lldb/unittests/Host/linux/HostTest.cpp
+++ b/lldb/unittests/Host/linux/HostTest.cpp
@@ -9,7 +9,7 @@
#include "lldb/Host/Host.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/HostInfo.h"
-#include "lldb/Target/Process.h"
+#include "lldb/Utility/ProcessInfo.h"
#include "gtest/gtest.h"
using namespace lldb_private;
More information about the lldb-commits
mailing list