[Lldb-commits] [PATCH] D29144: LLDB: fix for TestCallThatThrows.py test fail

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 15 08:59:07 PST 2017


labath added a comment.

The test added by this batch is failing on windows http://lab.llvm.org:8011/builders/lldb-windows7-android/builds/2499, for a very prosaic reason - we cannot run a "make clean" as something is holding the executable file open. Based on my debugging, it is not a problem in the test itself, but rather in the liblldb code (e.g. when I change all the breakpoint conditions to true, and adjust expectations accordingly, make clean suceeds). My feeling is something is creating a shared_ptr loop which prevents things from going away when the test is over.

I am going to debug this further, but I writing this here, in case you have any ideas where I should start looking.


https://reviews.llvm.org/D29144





More information about the lldb-commits mailing list