aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-03-05 09:20:31 +0100
committercon <qtc-committer@nokia.com>2010-03-05 16:51:35 +0100
commitdb54a33008f66479287b46503c048fc43d3b2fe9 (patch)
tree948a909a1ceb528f67aeef1a14151b533b02ac4b
parent42ab0d322b917b6f22e965233ce9c229de151449 (diff)
debugger: fix testArray() test case
(cherry picked from commit a5b7f7d3c5027e802c9118bde6405d045087fa36)
-rw-r--r--share/qtcreator/gdbmacros/dumper.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py
index 32585c843f..aa9bcfd0f9 100644
--- a/share/qtcreator/gdbmacros/dumper.py
+++ b/share/qtcreator/gdbmacros/dumper.py
@@ -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()