Index: lldb/trunk/include/lldb/API/SBValue.h =================================================================== --- lldb/trunk/include/lldb/API/SBValue.h +++ lldb/trunk/include/lldb/API/SBValue.h @@ -84,6 +84,7 @@ ValueType GetValueType (); + // It will be only valid starting from the second time. bool GetValueDidChange (); Index: lldb/trunk/include/lldb/Core/ValueObject.h =================================================================== --- lldb/trunk/include/lldb/Core/ValueObject.h +++ lldb/trunk/include/lldb/Core/ValueObject.h @@ -649,6 +649,7 @@ bool GetValueIsValid () const; + // It will be only valid starting from the second time. bool GetValueDidChange (); Index: lldb/trunk/test/python_api/value_var_update/TestValueVarUpdate.py =================================================================== --- lldb/trunk/test/python_api/value_var_update/TestValueVarUpdate.py +++ lldb/trunk/test/python_api/value_var_update/TestValueVarUpdate.py @@ -52,6 +52,12 @@ i = self.frame().FindVariable("i") i_val = i.GetValueAsUnsigned(0) + c = self.frame().FindVariable("c") + + # Update any values from the SBValue objects so we can ask them if they changed after a continue + i.GetValueDidChange() + c.GetChildAtIndex(1).GetValueDidChange() + c.GetChildAtIndex(0).GetChildAtIndex(0).GetValueDidChange() if self.TraceOn(): self.runCmd("frame variable") @@ -62,6 +68,9 @@ self.assertTrue(i_val != i.GetValueAsUnsigned(0), "GetValue() is saying a lie") self.assertTrue(i.GetValueDidChange(), "GetValueDidChange() is saying a lie") + # Check complex type + self.assertTrue(c.GetChildAtIndex(0).GetChildAtIndex(0).GetValueDidChange() and + not c.GetChildAtIndex(1).GetValueDidChange(), "GetValueDidChange() is saying a lie") if __name__ == '__main__': import atexit Index: lldb/trunk/test/python_api/value_var_update/main.c =================================================================== --- lldb/trunk/test/python_api/value_var_update/main.c +++ lldb/trunk/test/python_api/value_var_update/main.c @@ -1,8 +1,14 @@ +struct complex_type { + struct { long l; } inner; + struct complex_type *complex_ptr; +}; + int main() { int i = 0; + struct complex_type c = { { 1L }, &c }; for (int j = 3; j < 20; j++) { - i += j; + c.inner.l += (i += j); i = i - 1; // break here } return i;