[Lldb-commits] [lldb] r295530 - Update the location of ModuleCacheTest.cpp from

2017-02-17 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Fri Feb 17 19:51:11 2017 New Revision: 295530 URL: http://llvm.org/viewvc/llvm-project?rev=295530&view=rev Log: Update the location of ModuleCacheTest.cpp from unittest/Utility to unittest/Target so the unit tests can be run from xcode again. The diff is enormous - I think

[Lldb-commits] [lldb] r295522 - Updated the results formatter to eliminate redundant data.

2017-02-17 Thread Sean Callanan via lldb-commits
Author: spyffe Date: Fri Feb 17 19:07:51 2017 New Revision: 295522 URL: http://llvm.org/viewvc/llvm-project?rev=295522&view=rev Log: Updated the results formatter to eliminate redundant data. The testsuite's results formatter maintains a result_status_counts structure solely for the purpose of se

[Lldb-commits] [lldb] r295457 - NPL: Fix an incorrect logging formatv call

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 10:09:10 2017 New Revision: 295457 URL: http://llvm.org/viewvc/llvm-project?rev=295457&view=rev Log: NPL: Fix an incorrect logging formatv call Modified: lldb/trunk/source/Plugins/Process/Linux/NativeProcessLinux.cpp Modified: lldb/trunk/source/Plugins/Process

[Lldb-commits] [lldb] r295455 - Switch GDBRemoteLog to the new registration mechanism

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 10:09:06 2017 New Revision: 295455 URL: http://llvm.org/viewvc/llvm-project?rev=295455&view=rev Log: Switch GDBRemoteLog to the new registration mechanism Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp lldb/trunk/source/Plugi

Re: [Lldb-commits] [lldb] r295369 - Fix build

2017-02-17 Thread Zachary Turner via lldb-commits
Sorry about that, it's often frustrating to check every single buildbot that was failing because 99% of the time they fail for exactly the same reason, and when one is fixed all of them get fixed. In this case i used http://lab.llvm.org:8011/builders/lldb-amd64-ninja-freebsd11/builds/5417 as eviden

[Lldb-commits] [PATCH] D30094: Fix a couple of corner cases in NameMatches

2017-02-17 Thread Pavel Labath via Phabricator via lldb-commits
labath created this revision. Herald added a subscriber: mgorny. I originally set out to move the NameMatches closer to the relevant function and add some unit tests. However, in the process I've found a couple of bugs in the implementation: - the early exits where not always correct: - (test==

[Lldb-commits] [lldb] r295450 - Switch ProcessKDPLog to the new channel registration mechanism

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 09:08:08 2017 New Revision: 295450 URL: http://llvm.org/viewvc/llvm-project?rev=295450&view=rev Log: Switch ProcessKDPLog to the new channel registration mechanism Modified: lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp lldb/trunk/source/Pl

[Lldb-commits] [PATCH] D29985: [lldb] [test] Fix finding LLDB tools when building stand-alone

2017-02-17 Thread Pavel Labath via Phabricator via lldb-commits
labath accepted this revision. labath added a comment. This revision is now accepted and ready to land. Thanks, I feel more comfortable with this one. Let's give the others a but more time to chime in. If they don't I guess you can submit this. :) https://reviews.llvm.org/D29985 ___

[Lldb-commits] [PATCH] D30005: Fix compiler warnings for missing switch cases in lldb.

2017-02-17 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL295445: Fix compiler warnings for missing switch cases in lldb. (authored by labath). Changed prior to commit: https://reviews.llvm.org/D30005?vs=88604&id=88876#toc Repository: rL LLVM https://revie

[Lldb-commits] [lldb] r295445 - Fix compiler warnings for missing switch cases in lldb.

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 07:39:50 2017 New Revision: 295445 URL: http://llvm.org/viewvc/llvm-project?rev=295445&view=rev Log: Fix compiler warnings for missing switch cases in lldb. Summary: There have been a few new values added to a few LLVM enums this change makes sure that LLDB code ha

[Lldb-commits] [lldb] r295443 - Fix VASprintfTest on darwin

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 07:27:50 2017 New Revision: 295443 URL: http://llvm.org/viewvc/llvm-project?rev=295443&view=rev Log: Fix VASprintfTest on darwin The way of injecting an error into the printf call was not working on darwin - the C library still happily format the character. It only

[Lldb-commits] [lldb] r295442 - Reapply "Refactor log channel registration mechanism"

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 07:27:42 2017 New Revision: 295442 URL: http://llvm.org/viewvc/llvm-project?rev=295442&view=rev Log: Reapply "Refactor log channel registration mechanism" Changes wrt. previous version: - add #include : fix build on windows - add extra {} around the string literals

[Lldb-commits] [lldb] r295440 - NPL: Fix one more bug in the single step workaround

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 05:48:34 2017 New Revision: 295440 URL: http://llvm.org/viewvc/llvm-project?rev=295440&view=rev Log: NPL: Fix one more bug in the single step workaround In the case we are stepping over the thread creation instruction, we will end up calling Thread::SingleStep back

Re: [Lldb-commits] [lldb] r295369 - Fix build

2017-02-17 Thread Pavel Labath via lldb-commits
Hey Zach, after you think you've fixed the build, could you check back on the buildbot to make sure that it actually fixes things? In this case you would've seen that after the build is fixed, the next thing it runs into is about a dozen test failures. In fact, this breakage was something that wo

[Lldb-commits] [lldb] r295436 - Fix breakage caused by r295368

2017-02-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Feb 17 04:19:46 2017 New Revision: 295436 URL: http://llvm.org/viewvc/llvm-project?rev=295436&view=rev Log: Fix breakage caused by r295368 Also move the ErrorTest into the Utility package, to follow the class it is testing. Added: lldb/trunk/unittests/Utility/ErrorTe