diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-20 18:02:45 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-20 18:02:45 +0000 |
commit | 97c5d50e3437761d21c8f66360f565b82684f3e4 (patch) | |
tree | 03e59b2b10acea36f6d99bfb2effeab499f0cf3d /t/lib/dprof/test2_t | |
parent | 52b2474f1d62647ee0f7f74e7e4b053e4d4257fd (diff) | |
parent | 51e5ddcf11fb0f6bb47e63ed55c7ffc82e8891e9 (diff) | |
download | perl-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_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(); |