[Lldb-commits] [PATCH] D16322: Enable test log collection from remote debug servers

Todd Fiala via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 21 08:50:01 PST 2016


tfiala added inline comments.

================
Comment at: packages/Python/lldbsuite/test/lldbtest.py:1385-1386
@@ +1384,4 @@
+            # This is executed on a best-effort basis. If the file is not there, so be it.
+            lldb.remote_platform.Get(lldb.SBFileSpec("server.log"),
+                    lldb.SBFileSpec(self.getLogBasenameForCurrentTest()+"-server.log"))
+
----------------
labath wrote:
> tfiala wrote:
> > It might be nice to get some kind of output (perhaps in verbose mode?) if we're expecting the server.log to be there but we fail to retrieve it.  (Just a warning).  Does lldb.remote_platform.Get() already do that on a failure?
> It's not really clear when are we expecting it. A user might choose to enable logging on the remote system, or he may choose not to. Both are valid options, and right now we don't tell the client which one of them is happening. So, unless we introduce another option `--enable-server-logging` or something, the client has no way of knowing whether server logging is active.
> 
> Perhaps I could just rephrase the comment to better explain the "best-effort" part?
Oh okay - I thought we'd know for sure if the user was trying (or not trying) to log on the remote system.  If we don't know, no biggie.  I just thought it would be nice to know we didn't get the log when we were expecting it.  But if that's not possible, so be it.


http://reviews.llvm.org/D16322





More information about the lldb-commits mailing list