summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwtschueller <wtschueller@users.noreply.github.com>2014-07-12 19:37:10 (GMT)
committerwtschueller <wtschueller@users.noreply.github.com>2014-07-12 19:37:10 (GMT)
commit73e7c340f555291d4264b2f83caacf59a5a3395f (patch)
treedb284bbdcb08b6e44b92eeb296dbc668e91bce88
parentc6aaf0a4c35db27f968a7a6d0b9fa25b5b311bc3 (diff)
downloadDoxygen-73e7c340f555291d4264b2f83caacf59a5a3395f.zip
Doxygen-73e7c340f555291d4264b2f83caacf59a5a3395f.tar.gz
Doxygen-73e7c340f555291d4264b2f83caacf59a5a3395f.tar.bz2
Tcl: add missing file that breaks test 057
-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
+}