diff options
| author | Tim Hammerquist <penryu@apple.com> | 2017-10-03 21:20:18 +0000 |
|---|---|---|
| committer | Tim Hammerquist <penryu@apple.com> | 2017-10-03 21:20:18 +0000 |
| commit | a6db41675c44d18555277862a8abdc2c30e62339 (patch) | |
| tree | 7554ebc45b6f4b2bacf4d09d32ccb96209565a3c /lldb/unittests/ObjectFile | |
| parent | 3696352d85b8dce16edd336184dfda6c14e2ab0a (diff) | |
| download | bcm5719-llvm-a6db41675c44d18555277862a8abdc2c30e62339.tar.gz bcm5719-llvm-a6db41675c44d18555277862a8abdc2c30e62339.zip | |
cmake + xcode: prevent gtests from using includes from project root
Summary:
At present, several gtests in the lldb open source codebase are using
#include statements rooted at $(SOURCE_ROOT)/${LLDB_PROJECT_ROOT}.
This patch cleans up this directory/include structure for both CMake and
Xcode build systems.
rdar://problem/33835795
Reviewers: zturner, jingham, beanz
Reviewed By: beanz
Subscribers: emaste, lldb-commits, mgorny
Differential Revision: https://reviews.llvm.org/D36598
llvm-svn: 314849
Diffstat (limited to 'lldb/unittests/ObjectFile')
| -rw-r--r-- | lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp b/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp index 36220f0f57c..16fa5f000a9 100644 --- a/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp +++ b/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp @@ -14,7 +14,7 @@ #include "lldb/Core/ModuleSpec.h" #include "lldb/Core/Section.h" #include "lldb/Host/HostInfo.h" -#include "unittests/Utility/Helpers/TestUtilities.h" +#include "TestingSupport/TestUtilities.h" #include "llvm/ADT/Optional.h" #include "llvm/Support/FileUtilities.h" #include "llvm/Support/Path.h" |

