This revision was automatically updated to reflect the committed changes. Closed by commit rG0796b170fb3b: Fix error in TestNumThreads.py when frame.GetFunctionName returns none (authored by omjavaid). Herald added a project: LLDB.
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D79777/new/ https://reviews.llvm.org/D79777 Files: lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py Index: lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py =================================================================== --- lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py +++ lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py @@ -95,6 +95,8 @@ # the same breakpoint. def is_thread3(thread): for frame in thread: + if frame.GetFunctionName() is None: + continue if "thread3" in frame.GetFunctionName(): return True return False
Index: lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py =================================================================== --- lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py +++ lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py @@ -95,6 +95,8 @@ # the same breakpoint. def is_thread3(thread): for frame in thread: + if frame.GetFunctionName() is None: + continue if "thread3" in frame.GetFunctionName(): return True return False
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits