aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.python/py-varobj.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-08-31 13:58:49 -0600
committerTom Tromey <tromey@adacore.com>2023-09-07 14:04:53 -0600
commitd1369de649a9d19abae1012ef805aaa674314c0c (patch)
tree4938931225e3f7155ca257c9fcbe74133d2e5e52 /gdb/testsuite/gdb.python/py-varobj.c
parent78dfcce3174dbb9bd9d3a5898e57a9019dcc38d9 (diff)
downloadbinutils-d1369de649a9d19abae1012ef805aaa674314c0c.zip
binutils-d1369de649a9d19abae1012ef805aaa674314c0c.tar.gz
binutils-d1369de649a9d19abae1012ef805aaa674314c0c.tar.bz2
Fix bug in -var-evaluate-expression
This bug points out that if one uses -var-set-visualizer with "None" -- to disable a pretty-printer for a varobj -- then -var-evaluate-expression will still use pretty-printing. This is a combination of bugs. First, setting the visualizer does not update the display text; and second, computing the display text should use "raw" when Python is available but no visualizer is desired. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=11738 Reviewed-by: Keith Seitz <keiths@redhat.com>
Diffstat (limited to 'gdb/testsuite/gdb.python/py-varobj.c')
-rw-r--r--gdb/testsuite/gdb.python/py-varobj.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-varobj.c b/gdb/testsuite/gdb.python/py-varobj.c
index 894ce8f..88d0e74 100644
--- a/gdb/testsuite/gdb.python/py-varobj.c
+++ b/gdb/testsuite/gdb.python/py-varobj.c
@@ -21,6 +21,8 @@ struct test {
struct test tval = {23};
+struct test *test_ptr = &tval;
+
int main () {
return 0;
}