[Lldb-commits] [lldb] r269004 - Add a testcase for "BreakpointSetBySourceRegex"

2016-05-09 Thread Jim Ingham via lldb-commits
Author: jingham Date: Mon May 9 20:52:44 2016 New Revision: 269004 URL: http://llvm.org/viewvc/llvm-project?rev=269004&view=rev Log: Add a testcase for "BreakpointSetBySourceRegex" This tests both that we set the breakpoint on the right line, and that restricting by file and/or the function, w

[Lldb-commits] Some of the builders will go off-line for short time during the current week

2016-05-09 Thread Galina Kistanova via lldb-commits
Hello everyone, In the nearest time I am going to take few builders off line one by one for short time for upgrades. Thank you for understanding. Thanks Galina ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mail

[Lldb-commits] [lldb] r268971 - Added a testcase that verifies that multiline expressions work.

2016-05-09 Thread Sean Callanan via lldb-commits
Author: spyffe Date: Mon May 9 16:14:18 2016 New Revision: 268971 URL: http://llvm.org/viewvc/llvm-project?rev=268971&view=rev Log: Added a testcase that verifies that multiline expressions work. Added: lldb/trunk/packages/Python/lldbsuite/test/expression_command/multiline/ lldb/trunk/p

[Lldb-commits] [lldb] r268970 - Fixed multiline expressions, and removed some dead code.

2016-05-09 Thread Sean Callanan via lldb-commits
Author: spyffe Date: Mon May 9 16:13:27 2016 New Revision: 268970 URL: http://llvm.org/viewvc/llvm-project?rev=268970&view=rev Log: Fixed multiline expressions, and removed some dead code. IOHandlerLinesUpdated() does nothing, and IOHandlerIsInputComplete should be implemented but isn't. This m

Re: [Lldb-commits] [PATCH] D19124: [LLDB] Added support for PHI nodes to IR interpreter

2016-05-09 Thread Cameron via lldb-commits
cameron314 added a comment. Excellent, thank you! http://reviews.llvm.org/D19124 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] Buildbot numbers for the last week of 5/01/2016 - 5/07/2016

2016-05-09 Thread Galina Kistanova via lldb-commits
Hello everyone, Below are some buildbot numbers for the last week of 5/01/2016 - 5/07/2016. Thanks Galina "Status change ratio" by active builder (percent of builds that changed the builder status from greed to red or from red to green): buildername

[Lldb-commits] Buildbot numbers for week of 4/24/2016 - 4/30/2016

2016-05-09 Thread Galina Kistanova via lldb-commits
Hello everyone, Below are some buildbot numbers for week of 4/24/2016 - 4/30/2016. Thanks Galina "Status change ratio" by active builder (percent of builds that changed the builder status from greed to red or from red to green): buildername| bu

Re: [Lldb-commits] [PATCH] D19124: [LLDB] Added support for PHI nodes to IR interpreter

2016-05-09 Thread Sean Callanan via lldb-commits
spyffe accepted this revision. spyffe added a comment. This revision is now accepted and ready to land. This patch is fine. I especially appreciate the time you took making the IRInterpreter properly testable. I will use this myself. Comment at: source/Commands/CommandObjectE

Re: [Lldb-commits] [PATCH] D19124: [LLDB] Added support for PHI nodes to IR interpreter

2016-05-09 Thread Sean Callanan via lldb-commits
spyffe added a subscriber: spyffe. spyffe added a comment. Ah… you know me too well. Looking at this now. http://reviews.llvm.org/D19124 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-co

[Lldb-commits] [lldb] r268934 - Mark TestPrintStackTraces as flaky on linux

2016-05-09 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon May 9 11:59:29 2016 New Revision: 268934 URL: http://llvm.org/viewvc/llvm-project?rev=268934&view=rev Log: Mark TestPrintStackTraces as flaky on linux PR27687 Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py M

[Lldb-commits] [lldb] r268923 - Enable NamespaceLookupTestCase.test_scope_lookup_before_using_with_run_command on linux

2016-05-09 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon May 9 09:43:22 2016 New Revision: 268923 URL: http://llvm.org/viewvc/llvm-project?rev=268923&view=rev Log: Enable NamespaceLookupTestCase.test_scope_lookup_before_using_with_run_command on linux test appears to be passing now. Modified: lldb/trunk/packages/Python/

Re: [Lldb-commits] [PATCH] D19124: [LLDB] Added support for PHI nodes to IR interpreter

2016-05-09 Thread Cameron via lldb-commits
cameron314 added a comment. @spyffe, do you have time to look at this sometime this week? It's a very simple patch (the test code took longer to write than the patch itself). Thanks! http://reviews.llvm.org/D19124 ___ lldb-commits mailing list lldb

[Lldb-commits] [PATCH] D20065: Fix race in TestExitDuringStep and unify pseudo_barrier handling

2016-05-09 Thread Pavel Labath via lldb-commits
labath created this revision. labath added a reviewer: clayborg. labath added a subscriber: lldb-commits. TestExitDuringStep was very rarely hanging on the buildbots. I can't be sure, but I believe this was because of the fact that it declared its pseudo_barrier variable as "volatile int", which

Re: [Lldb-commits] [lldb] r268906 - Fix assertion in SymbolFilePDB

2016-05-09 Thread Pavel Labath via lldb-commits
Zach, I have put this in to unblock the builds with assertions enabled, please fix it up if you want to handle this differently. pl On 9 May 2016 at 12:07, Pavel Labath via lldb-commits wrote: > Author: labath > Date: Mon May 9 06:07:43 2016 > New Revision: 268906 > > URL: http://llvm.org/viewv

[Lldb-commits] [lldb] r268906 - Fix assertion in SymbolFilePDB

2016-05-09 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon May 9 06:07:43 2016 New Revision: 268906 URL: http://llvm.org/viewvc/llvm-project?rev=268906&view=rev Log: Fix assertion in SymbolFilePDB llvm::Error requires all errors to be handled. Simply checking the whether there was an error is not enough, you have to actuall cal