aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
authorDmitry Vasilyev <dvassiliev@accesssoftek.com>2024-04-30 18:15:14 +0400
committerGitHub <noreply@github.com>2024-04-30 15:15:14 +0100
commitc106abfe9f3d3ed78a946009f7625088f28e9065 (patch)
tree323eb9e364c728424a4d8b933d97b07a58c0989f /lldb/packages/Python/lldbsuite/test/lldbtest.py
parent2aabfc811670beb843074c765c056fff4a7b443b (diff)
downloadllvm-c106abfe9f3d3ed78a946009f7625088f28e9065.zip
llvm-c106abfe9f3d3ed78a946009f7625088f28e9065.tar.gz
llvm-c106abfe9f3d3ed78a946009f7625088f28e9065.tar.bz2
[lldb] Fixed SyntaxWarning invalid escape sequence '\l' in lldbtest.py (#90609)
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 591e834..5fd686c 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1526,7 +1526,7 @@ class Base(unittest.TestCase):
os.path.join(os.environ["LLDB_SRC"], "include"),
os.path.join(configuration.lldb_obj_root, "include"),
),
- "LD_EXTRAS": "-shared -l%s\liblldb.lib" % lib_dir,
+ "LD_EXTRAS": "-shared -l%s\\liblldb.lib" % lib_dir,
}
else:
d = {