Skip to content
Snippets Groups Projects
Commit f9b0c1b8 authored by Shivendra Pratap's avatar Shivendra Pratap
Browse files

increase no of chars returned by gdb.


increase no of chars returned by gdb to 256

Change-Id: I7d5a3da6c3744fbcfc4d10b68413c4a237e27692
Signed-off-by: default avatarShivendra Pratap <spratap@codeaurora.org>
parent 969da4ee
No related branches found
No related tags found
No related merge requests found
......@@ -294,6 +294,7 @@ class GdbMI(object):
def get_value_of_string(self, symbol):
"""Returns the value of a symbol (as a string)"""
self._run("set print elements 256")
cmd = 'print /s {0}'.format(symbol)
result = self._run(cmd)
if len(result.lines) == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment