summaryrefslogtreecommitdiff
path: root/cpan/Devel-DProf/dprof/test4_t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Devel-DProf/dprof/test4_t')
-rw-r--r--cpan/Devel-DProf/dprof/test4_t24
1 files changed, 24 insertions, 0 deletions
diff --git a/cpan/Devel-DProf/dprof/test4_t b/cpan/Devel-DProf/dprof/test4_t
new file mode 100644
index 0000000000..729968270a
--- /dev/null
+++ b/cpan/Devel-DProf/dprof/test4_t
@@ -0,0 +1,24 @@
+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();
+
+eval { fork };
+
+bar();
+baz();
+foo();