summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/t/lib/dprof/test4_t
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/t/lib/dprof/test4_t')
-rw-r--r--contrib/perl5/t/lib/dprof/test4_t24
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/perl5/t/lib/dprof/test4_t b/contrib/perl5/t/lib/dprof/test4_t
new file mode 100644
index 0000000..7299682
--- /dev/null
+++ b/contrib/perl5/t/lib/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();
OpenPOWER on IntegriCloud