-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathrb_lines_example.txt
30 lines (28 loc) · 1.34 KB
/
rb_lines_example.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
This simple script uses the line probe to count how many times a line was
executed in a Ruby program. In this example you can see it running on the
Code/Ruby/func_slow.rb program.
# rb_lines.d
Tracing... Hit Ctrl-C to end.
^C
FILE:LINE COUNT
func_slow.rb:3 1
func_slow.rb:4 1
func_slow.rb:5 1
func_slow.rb:6 1
func_slow.rb:12 1
func_slow.rb:13 1
func_slow.rb:14 1
func_slow.rb:15 1
func_slow.rb:19 1
func_slow.rb:22 1
func_slow.rb:23 1
func_slow.rb:24 1
func_slow.rb:25 1
func_slow.rb:29 1
func_slow.rb:32 1
func_slow.rb:26 100000
func_slow.rb:27 100000
func_slow.rb:16 200000
func_slow.rb:17 200000
func_slow.rb:7 300000
func_slow.rb:8 300000