diff options
| author | Pavel Labath <labath@google.com> | 2017-06-29 13:02:11 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2017-06-29 13:02:11 +0000 |
| commit | 7ed3e22f00468c71d561843bdb53d93d309ae92e (patch) | |
| tree | b9ce5cd4c82dfee7b77c9268de58c6614ac89769 /lldb/unittests/Utility/TildeExpressionResolverTest.cpp | |
| parent | 476f855ec8cbe465e26fc9e828cc1fe376c491ef (diff) | |
| download | bcm5719-llvm-7ed3e22f00468c71d561843bdb53d93d309ae92e.tar.gz bcm5719-llvm-7ed3e22f00468c71d561843bdb53d93d309ae92e.zip | |
[unittests] Add a helper function for getting an input file
Summary:
Fetching an input file required about five lines of code, and this was
repeated in multiple unit tests, with slight variations. Add a helper
function for doing that into the lldbUtilityMocks module (which I rename
to lldbUtilityHelpers to commemorate the fact it includes more than
mocks)
Reviewers: zturner, eugene
Subscribers: emaste, mgorny, lldb-commits
Differential Revision: https://reviews.llvm.org/D34683
llvm-svn: 306668
Diffstat (limited to 'lldb/unittests/Utility/TildeExpressionResolverTest.cpp')
| -rw-r--r-- | lldb/unittests/Utility/TildeExpressionResolverTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/Utility/TildeExpressionResolverTest.cpp b/lldb/unittests/Utility/TildeExpressionResolverTest.cpp index fd953390ed5..a24e998cb81 100644 --- a/lldb/unittests/Utility/TildeExpressionResolverTest.cpp +++ b/lldb/unittests/Utility/TildeExpressionResolverTest.cpp @@ -1,6 +1,6 @@ #include "gtest/gtest.h" -#include "Mocks/MockTildeExpressionResolver.h" +#include "Helpers/MockTildeExpressionResolver.h" #include "lldb/Utility/TildeExpressionResolver.h" #include "llvm/ADT/SmallString.h" |

