aboutsummaryrefslogtreecommitdiff
path: root/lldb/test
diff options
context:
space:
mode:
authorMuhammad Omair Javaid <omair.javaid@linaro.org>2022-07-13 16:28:25 +0500
committerMuhammad Omair Javaid <omair.javaid@linaro.org>2022-07-13 16:30:09 +0500
commit7610524af3c99e63ec6b3a452c45af51ffae57fa (patch)
tree4b00db3718f32b972e96f3220e5b50a7dc1a1f44 /lldb/test
parentcd6e02eebcfbad13c6e075d620310ce2fb5b5ea9 (diff)
downloadllvm-7610524af3c99e63ec6b3a452c45af51ffae57fa.zip
llvm-7610524af3c99e63ec6b3a452c45af51ffae57fa.tar.gz
llvm-7610524af3c99e63ec6b3a452c45af51ffae57fa.tar.bz2
[LLDB] Fix TestThreadAPI.py for AArch64/Windows
This patch fixes TestThreadAPI for AArch64 windows by switching over to PDB debug info instead of DWARF. This is needed to step over library functions like printf as there is debug info mismatch between DWARF and PDB. PDB DWARF interworking is not fully supported by LLDB at the moment.
Diffstat (limited to 'lldb/test')
-rw-r--r--lldb/test/API/python_api/thread/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/thread/Makefile b/lldb/test/API/python_api/thread/Makefile
index 30749db..57ef8f8 100644
--- a/lldb/test/API/python_api/thread/Makefile
+++ b/lldb/test/API/python_api/thread/Makefile
@@ -1,3 +1,5 @@
CXX_SOURCES ?= main.cpp
+DEBUG_INFO_FLAG := -g
+
include Makefile.rules