[Lldb-commits] [PATCH] Have llgs tests output their traces into session dir

Pavel Labath labath at google.com
Tue Feb 3 08:18:26 PST 2015


Hi vharron, zturner,

This reduces the bloat in the source tree and makes the tests more consistent.

http://reviews.llvm.org/D7373

Files:
  test/tools/lldb-gdbserver/gdbremote_testcase.py

Index: test/tools/lldb-gdbserver/gdbremote_testcase.py
===================================================================
--- test/tools/lldb-gdbserver/gdbremote_testcase.py
+++ test/tools/lldb-gdbserver/gdbremote_testcase.py
@@ -137,7 +137,9 @@
         self.debug_monitor_exe = get_lldb_gdbserver_exe()
         if not self.debug_monitor_exe:
             self.skipTest("lldb_gdbserver exe not found")
-        self.debug_monitor_extra_args = " -c 'log enable -T -f process-{}.log lldb break process thread' -c 'log enable -T -f packets-{}.log gdb-remote packets'".format(self.id(), self.id(), self.id())
+        dname = os.path.join(os.environ["LLDB_TEST"],
+                             os.environ["LLDB_SESSION_DIRNAME"])
+        self.debug_monitor_extra_args = " -c 'log enable -T -f {}/process-{}.log lldb break process thread' -c 'log enable -T -f {}/packets-{}.log gdb-remote packets'".format(dname, self.id(), dname, self.id())
         if use_named_pipe:
             (self.named_pipe_path, self.named_pipe, self.named_pipe_fd) = self.create_named_pipe()

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D7373.19229.patch
Type: text/x-patch
Size: 1071 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150203/74cc7c75/attachment.bin>


More information about the lldb-commits mailing list