summaryrefslogtreecommitdiff
path: root/t/lib/dprof/test2_t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-07-20 18:02:45 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-07-20 18:02:45 +0000
commit97c5d50e3437761d21c8f66360f565b82684f3e4 (patch)
tree03e59b2b10acea36f6d99bfb2effeab499f0cf3d /t/lib/dprof/test2_t
parent52b2474f1d62647ee0f7f74e7e4b053e4d4257fd (diff)
parent51e5ddcf11fb0f6bb47e63ed55c7ffc82e8891e9 (diff)
downloadperl-97c5d50e3437761d21c8f66360f565b82684f3e4.tar.gz
Integrate with Sarathy.
p4raw-id: //depot/cfgperl@3713
Diffstat (limited to 't/lib/dprof/test2_t')
-rw-r--r--t/lib/dprof/test2_t21
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();