summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-11-08 18:14:42 +0000
committerChris Bieneman <beanz@apple.com>2016-11-08 18:14:42 +0000
commitb6f833793d03a35faa1523ebadf454ea6efad159 (patch)
tree43d553b33f070857e57deb50b2aa90e727382c00 /lldb/packages/Python/lldbsuite/test/lldbtest.py
parented999fe0b28df54ac05abc410d6f5d05a2a967f2 (diff)
downloadbcm5719-llvm-b6f833793d03a35faa1523ebadf454ea6efad159.tar.gz
bcm5719-llvm-b6f833793d03a35faa1523ebadf454ea6efad159.zip
[Test Suite] Properly quote python string
Oops! llvm-svn: 286258
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py2
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 89482e2acad..cde8e916d0e 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)
OpenPOWER on IntegriCloud