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 30 31 32 33 34 35 36 37
|
# Test linear histogram over and underflow
set test "linear_overunder"
set ::result_string {count=1600
sum=653400
min=0
max=1485
avg=408
variance=450768
value |-------------------------------------------------- count
<250 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 680
250 |@@@@@@ 94
300 |@@@@@ 79
350 |@@@@@ 79
400 |@@@@ 65
450 |@@@@ 67
500 |@@@ 55
550 |@@@ 54
600 |@@@ 51
650 |@@@ 45
700 |@@ 41
750 |@@ 40
800 |@@ 34
850 |@@ 33
900 |@@ 31
950 |@ 27
1000 |@ 23
>1000 |@@@@@@@ 102
}
foreach runtime [get_runtime_list] {
if {$runtime != ""} {
stap_run2 $srcdir/$subdir/$test.stp --runtime=$runtime
} else {
stap_run2 $srcdir/$subdir/$test.stp
}
}
|