Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
b9c1b51e45b845debb76d8658edabca70ca56079
/
lldb
/
unittests
/
ScriptInterpreter
/
Python
/
PythonDataObjectsTests.cpp
b9c1b51
*** This commit represents a complete reformatting of the LLDB source code
by Kate Stone
· 9 years ago
8c68837
Fix unit tests on windows
by Pavel Labath
· 9 years ago
008ec44
Fix a problem where if a uint64_t value is placed into a python dictionary and sent up to LLDB and converted to StructuredData, it would not be able to parse the full 64 bit value. A number like 0xf000000000000000L could be placed into a dictionary, and sent to LLDB and it would end up being 0xffffffffffffffff since it would overflow a int64_t. We leave the old code there, but if it overflows, we treat the number like a uint64_t and get it to decode correctly. Added a gtest to cover this so we don't regress. I verified the gtest failed prior to the fix, and it succeeds after it.
by Greg Clayton
· 9 years ago
5a8453d
Fix PythonDataObjectsTests for python 2
by Pavel Labath
· 10 years ago
de9dfe7
Fix sign conversion warnings in LLDB Python unittests
by Reid Kleckner
· 10 years ago
f9d6d20
Fix swig typemap for SBEvent.
by Zachary Turner
· 10 years ago
5a72c02
Introduce a PythonBytes class into PythonDataObjects.
by Zachary Turner
· 10 years ago
c946d46
gtest - Make a `PythonTestSuite` base class for setup / teardown.
by Zachary Turner
· 10 years ago
a140514
Create `PythonTuple` and `PythonCallable` wrapper classes.
by Zachary Turner
· 10 years ago
7841efb
Add a `PythonModule` class, and a root-level method for resolving names.
by Zachary Turner
· 10 years ago
7d6d218
Convert SWIG typemap string operations to PythonObjects.
by Zachary Turner
· 10 years ago
9c40264
Introduce a `PythonFile` object, and use it everywhere.
by Zachary Turner
· 10 years ago
1842693
Get Python unit tests working with Python 3.
by Zachary Turner
· 10 years ago
f8b22f8
Fix ref counting of Python objects.
by Zachary Turner
· 10 years ago
22c8efc
Port native Python-API to 3.x
by Zachary Turner
· 10 years ago