diff options
Diffstat (limited to 'cpan/Devel-DProf/dprof/test4_t')
-rw-r--r-- | cpan/Devel-DProf/dprof/test4_t | 24 |
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(); |