diff options
author | Chris Bieneman <beanz@apple.com> | 2016-11-08 17:53:18 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-11-08 17:53:18 +0000 |
commit | 4b8dbcb74c8d95826e7232b273ade8929142f8c5 (patch) | |
tree | 91167e06841f33e4d235cc28b61e392b3d7892ff /lldb/packages/Python/lldbsuite/test | |
parent | 5f7dea85c21e82cf3089ee5a34ad51ac90887642 (diff) | |
download | bcm5719-llvm-4b8dbcb74c8d95826e7232b273ade8929142f8c5.tar.gz bcm5719-llvm-4b8dbcb74c8d95826e7232b273ade8929142f8c5.zip |
[Test Suite] Attempt to fix issue zturner reported to me
Not sure why this didn't explode more massively, but this should fix the issue with the non-framework tests.
llvm-svn: 286254
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 924bac2be8a..89482e2acad 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -1864,7 +1864,7 @@ class TestBase(Base): if self.hasDarwinFramework(): include_stmt = "'#include <%s>' % os.path.join('LLDB', header)" else: - include_stmt = "'#include <%s>' % os.path.join(public_api_dir, header)" + include_stmt = "'#include <%s>' % os.path.join(" + public_api_dir + ", header)" list = [eval(include_stmt) for header in public_headers if ( header.startswith("SB") and header.endswith(".h"))] includes = '\n'.join(list) |