summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testing/_057_caller_graphs.tcl4
1 files changed, 4 insertions, 0 deletions
diff --git a/testing/_057_caller_graphs.tcl b/testing/_057_caller_graphs.tcl
new file mode 100644
index 0000000..24b9c20
--- /dev/null
+++ b/testing/_057_caller_graphs.tcl
@@ -0,0 +1,4 @@
+proc inFileB args {
+ array set info [info frame 0]; puts -nonewline ->$info(proc)
+ inFileA
+}