nitesh.jain created this revision.
nitesh.jain added reviewers: clayborg, labath, zturner.
nitesh.jain added subscribers: jaydeep, bhushan, slthakur, lldb-commits.
In case of MIPS, the floating point register size is based on FR bit of status
register(SR) (https://reviews.llvm.org/rL277343). In t
Author: akuegel
Date: Thu Nov 24 04:01:34 2016
New Revision: 287862
URL: http://llvm.org/viewvc/llvm-project?rev=287862&view=rev
Log:
Remove \x13 (^S) character that was likely added by mistake.
r287386 added a \x13 character inside a string literal. Most likely this
was by mistake, so remove it.
labath accepted this revision.
labath added a comment.
This revision is now accepted and ready to land.
Thank you.
https://reviews.llvm.org/D27085
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listin
labath requested changes to this revision.
labath added a comment.
This revision now requires changes to proceed.
Looks fine in principle, but please encapsulate this better.
Comment at:
packages/Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py:569
sel
labath added a comment.
It fails on the linux buildbot, but not when I run it locally. I am going to
investigate the issue.
https://reviews.llvm.org/D26676
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mai
labath added a comment.
Oh, you fixed it. Thank you. :)
https://reviews.llvm.org/D26676
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
hhellyer added a comment.
@labath - Yes sorry about that. To be safe I did the "honest" thing of using
arc to pull down the patch from phabriactor and then arc commit to land it to
make sure I committed exactly what was reviewed. Somewhere in that it lost the
contents of the core files and just
Author: labath
Date: Thu Nov 24 04:54:49 2016
New Revision: 287864
URL: http://llvm.org/viewvc/llvm-project?rev=287864&view=rev
Log:
Introduce chrono to more gdb-remote functions
Summary:
This replaces the usage of raw integers with duration classes in the gdb-remote
packet management functions.
This revision was automatically updated to reflect the committed changes.
Closed by commit rL287864: Introduce chrono to more gdb-remote functions
(authored by labath).
Changed prior to commit:
https://reviews.llvm.org/D26971?vs=79050&id=79203#toc
Repository:
rL LLVM
https://reviews.llvm.or
Author: labath
Date: Thu Nov 24 05:22:43 2016
New Revision: 287867
URL: http://llvm.org/viewvc/llvm-project?rev=287867&view=rev
Log:
Attempt to fix freebsd build after r287864
the chrono library there uses long long as the underlying chrono type, but
defines int64_t as long (or the other way arou
Author: labath
Date: Thu Nov 24 08:03:57 2016
New Revision: 287879
URL: http://llvm.org/viewvc/llvm-project?rev=287879&view=rev
Log:
Use chrono in AdbClient
This refactors the class implementations to use chrono. I'll follow this up with
a refactor of the class interface.
Modified:
lldb/trun
Author: labath
Date: Thu Nov 24 08:11:47 2016
New Revision: 287880
URL: http://llvm.org/viewvc/llvm-project?rev=287880&view=rev
Log:
Use more chrono in AdbClient
This refactors AdbClient interface in terms of std::chrono.
Modified:
lldb/trunk/source/Plugins/Platform/Android/AdbClient.cpp
Author: labath
Date: Thu Nov 24 08:41:36 2016
New Revision: 287881
URL: http://llvm.org/viewvc/llvm-project?rev=287881&view=rev
Log:
Enable WatchpointPythonCommandTestCase-test_continue_in_watchpoint_command
This test passes consistently on linux, so I am removing the overall XFAIL. If
it
fails
Author: labath
Date: Thu Nov 24 08:54:53 2016
New Revision: 287883
URL: http://llvm.org/viewvc/llvm-project?rev=287883&view=rev
Log:
Enable TestRegisterVariables for some configurations
It consistently passes for linux-clang-i386, and linux-gcc-x86_64.
Modified:
lldb/trunk/packages/Python/l
Author: labath
Date: Thu Nov 24 09:03:31 2016
New Revision: 287884
URL: http://llvm.org/viewvc/llvm-project?rev=287884&view=rev
Log:
Enable TestBitfields on linux with clang
The test has been passing for a while now.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/c/bitfields/TestBi
Author: labath
Date: Thu Nov 24 09:10:15 2016
New Revision: 287885
URL: http://llvm.org/viewvc/llvm-project?rev=287885&view=rev
Log:
Enable TestMultithreaded-sb_api_listener_event_process_state on linux/gcc
Passing consistently now.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/api/mu
Author: labath
Date: Thu Nov 24 09:16:07 2016
New Revision: 287887
URL: http://llvm.org/viewvc/llvm-project?rev=287887&view=rev
Log:
Enable MiExecTestCase-test_lldbmi_exec_next_instruction
Test passes consistently, at least on linux.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/tools
Author: labath
Date: Thu Nov 24 09:54:15 2016
New Revision: 287893
URL: http://llvm.org/viewvc/llvm-project?rev=287893&view=rev
Log:
Fix TestMiExec.test_lldbmi_exec_next_instruction
The line numbers come out slightly differently when the test is run with gcc-4.9
as a compiler. The test probably s
Author: labath
Date: Thu Nov 24 11:10:10 2016
New Revision: 287896
URL: http://llvm.org/viewvc/llvm-project?rev=287896&view=rev
Log:
Add a couple of tests for the Listener class
I'm considering doing some refactor there, so I am adding these to guard the
current behavior.
Added:
lldb/trunk/u
emaste added a comment.
The tests are not in great shape on FreeBSD/arm64 today, but look roughly
equivalent with and without this patch.
At https://reviews.llvm.org/rL287887:
===
Test Result Summary
===
Test Methods: 1148
Reruns: 16
emaste added a comment.
In https://reviews.llvm.org/D25947#597160, @labath wrote:
> Ed, if I may suggest, while you are playing with the arm machine, could you
> grab us a core file or two? It'd be great to be able to do a basic sanity
> check on these things without physical access.
I used m
nitesh.jain created this revision.
nitesh.jain added reviewers: clayborg, jingham, labath.
nitesh.jain added subscribers: jaydeep, bhushan, slthakur, lldb-commits.
In case of MIPS, the watchpoint exception occur before associated instruction
is executed. When watchpoint hit , we first enable the
22 matches
Mail list logo