summaryrefslogtreecommitdiffstats
path: root/tests/debuginfo/embedded-visualizer-point.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/debuginfo/embedded-visualizer-point.py
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/debuginfo/embedded-visualizer-point.py')
-rw-r--r--tests/debuginfo/embedded-visualizer-point.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/debuginfo/embedded-visualizer-point.py b/tests/debuginfo/embedded-visualizer-point.py
new file mode 100644
index 000000000..d6b1af007
--- /dev/null
+++ b/tests/debuginfo/embedded-visualizer-point.py
@@ -0,0 +1,23 @@
+import gdb
+
+class PointPrinter:
+ "Print a Point"
+
+ def __init__(self, val):
+ self.val = val
+ self.x = int(val["x"])
+ self.y = int(val["y"])
+
+ def to_string(self):
+ return "({}, {})".format(self.x, self.y)
+
+def lookup(val):
+ lookup_tag = val.type.tag
+ if lookup_tag is None:
+ return None
+ if "embedded_visualizer::point::Point" == lookup_tag:
+ return PointPrinter(val)
+
+ return None
+
+gdb.current_objfile().pretty_printers.append(lookup)