summaryrefslogtreecommitdiffstats
path: root/lldb/test/cpp/dynamic-value
Commit message (Collapse)AuthorAgeFilesLines
* Move C++-related test directories to now reside under lang.Johnny Chen2011-06-253-297/+0
| | | | llvm-svn: 133878
* The extra burden for the Python API test case to assign its process object ↵Johnny Chen2011-06-151-6/+6
| | | | | | | | | to self.process in order to have its process cleaned up (terminated) upon tearDown is gone for good. Let's simplify a bunch of Python API test cases. llvm-svn: 133097
* Now that we have added a post-processing step for adding truth value testing toJohnny Chen2011-05-241-19/+19
| | | | | | | those lldb objects which implement the IsValid() method, let's change the rest of the test suite to use the more compact truth value testing pattern (the Python way). llvm-svn: 131970
* Fix a bug in the test case file (doesn't affect the tests.)Jim Ingham2011-05-171-2/+5
| | | | llvm-svn: 131445
* Clang makes two breakpoints for some fairly simple lines, not sure why but ↵Jim Ingham2011-05-172-7/+7
| | | | | | | | no need to check for this in the testsuite. llvm-svn: 131443
* Change "frame var" over to using OptionGroups (and thus the ↵Jim Ingham2011-05-041-14/+17
| | | | | | | | | OptionGroupVariableObjectDisplay). Change the boolean "use_dynamic" over to a tri-state, no-dynamic, dynamic-w/o running target, and dynamic with running target. llvm-svn: 130832
* For lldbutil.py, Change a bunch of function names to all lower case formats ↵Johnny Chen2011-04-251-4/+4
| | | | | | | | to be consistent. And modify the test cases accordingly. llvm-svn: 130174
* Fix test failure for '-A i386'.Johnny Chen2011-04-251-1/+1
| | | | llvm-svn: 130134
* Converted to use SBProcess.LaunchSimple().Johnny Chen2011-04-191-3/+1
| | | | llvm-svn: 129780
* Add support for "dynamic values" for C++ classes. This currently only works ↵Jim Ingham2011-04-163-0/+293
for "frame var" and for the expressions that are simple enough to get passed to the "frame var" underpinnings. The parser code will have to be changed to also query for the dynamic types & offsets as it is looking up variables. The behavior of "frame var" is controlled in two ways. You can pass "-d {true/false} to the frame var command to get the dynamic or static value of the variables you are printing. There's also a general setting: target.prefer-dynamic-value (boolean) = 'true' which is consulted if you call "frame var" without supplying a value for the -d option. llvm-svn: 129623
OpenPOWER on IntegriCloud