Re: [Lldb-commits] [PATCH] D32522: Test case for the issue raised in D32271

2017-05-09 Thread vignesh balu via lldb-commits
you mean like this "exe = os.path.join('./newdir/','proc_attach')". I can't use "os.getcwd" as it will become the absolute path which we should not use. thanks, vbalu On Wed, May 3, 2017 at 11:51 AM, Zachary Turner wrote: > Can you rewrite the exe path computation to use os.path.join so we're n

[Lldb-commits] [lldb] r302584 - Import sys in repo.py.

2017-05-09 Thread Lang Hames via lldb-commits
Author: lhames Date: Tue May 9 15:37:01 2017 New Revision: 302584 URL: http://llvm.org/viewvc/llvm-project?rev=302584&view=rev Log: Import sys in repo.py. The find function in repo.py calls sys.exit on error. Without this import that call to exit will fail, masking the actual error message. This

[Lldb-commits] [PATCH] D33025: [DWARF parser] Produce correct template parameter packs

2017-05-09 Thread Sean Callanan via Phabricator via lldb-commits
spyffe created this revision. Templates can end in parameter packs, like this template struct MyStruct { /*...*/ }; LLDB does not currently support these parameter packs; it does not emit them into the template argument list at all. This causes problems when you specialize, e.g.: templa