[Lldb-commits] [PATCH] D58235: Don't source local .lldbinit in the test suite

Raphael Isemann via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 14 08:33:11 PST 2019


teemperor updated this revision to Diff 186850.
teemperor added a comment.

Ah yes, that also explains why the test suit failed. Fixed and the test now passes, thanks!


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D58235/new/

https://reviews.llvm.org/D58235

Files:
  lldb/lit/helper/toolchain.py


Index: lldb/lit/helper/toolchain.py
===================================================================
--- lldb/lit/helper/toolchain.py
+++ lldb/lit/helper/toolchain.py
@@ -35,7 +35,7 @@
     primary_tools = [
         ToolSubst('%lldb',
                   command=FindTool('lldb'),
-                  extra_args=['-S',
+                  extra_args=['--no-lldbinit', '-S',
                               os.path.join(config.test_source_root,
                                            'lit-lldb-init')]),
         lldbmi,


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58235.186850.patch
Type: text/x-patch
Size: 525 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190214/b1109cc4/attachment.bin>


More information about the lldb-commits mailing list