debugger: fix testArray() test case

This commit is contained in:
hjk
2010-03-05 09:20:31 +01:00
parent 59873ccf1d
commit a5b7f7d3c5

View File

@@ -557,7 +557,10 @@ class FrameCommand(gdb.Command):
try:
#warn("ITEM VALUE %s: " % item.value)
# Throw on funny stuff, catch below.
dummy = str(item.value)
# Unfortunately, this fails also with a "Unicode encoding error"
# in testArray().
#dummy = str(item.value)
pass
except:
# Locals with failing memory access.
d.beginHash()