move DProf things around to where they are supposed to be
[p5sagit/p5-mst-13.2.git] / t / lib / dprof / test4_v
CommitLineData
583a019e 1# perl
2
3use V;
4
5dprofpp( '-T' );
6$expected =
7qq{main::bar
8main::bar
9main::baz
10 main::bar
11 main::bar
12 main::bar
13 main::foo
14 main::bar
15main::foo
16 main::bar
17};
95667ae4 18report 13, sub { $expected eq $results };
583a019e 19
20dprofpp('-TF');
95667ae4 21report 14, sub { $expected eq $results };
583a019e 22
23dprofpp( '-t' );
24$expected =
25qq{main::bar (2x)
26main::baz
27 main::bar (3x)
28 main::foo
29 main::bar
30main::foo
31 main::bar
32};
95667ae4 33report 15, sub { $expected eq $results };
583a019e 34
35dprofpp('-tF');
95667ae4 36report 16, sub { $expected eq $results };