diff options
Diffstat (limited to 't/lib/dprof/test2_t')
-rw-r--r-- | t/lib/dprof/test2_t | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/t/lib/dprof/test2_t b/t/lib/dprof/test2_t new file mode 100644 index 0000000000..edc46c527e --- /dev/null +++ b/t/lib/dprof/test2_t @@ -0,0 +1,21 @@ +sub foo { + print "in sub foo\n"; + bar(); +} + +sub bar { + print "in sub bar\n"; +} + +sub baz { + print "in sub baz\n"; + bar(); + bar(); + bar(); + foo(); +} + +bar(); +bar(); +baz(); +foo(); |