diff options
Diffstat (limited to 'testsuite/buildok/fourteen.stp')
-rwxr-xr-x | testsuite/buildok/fourteen.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/buildok/fourteen.stp b/testsuite/buildok/fourteen.stp index b7f68afe..8eab2480 100755 --- a/testsuite/buildok/fourteen.stp +++ b/testsuite/buildok/fourteen.stp @@ -6,4 +6,4 @@ probe timer.jiffies(100).randomize(100) { j++ } probe timer.ms(100) { i++ } probe timer.ms(100).randomize(100) { j++ } probe timer.profile { i++ } -probe end { log ("i=" . string(i) . " j=" . string(j)) } +probe end { printf("i=%d j=%d\n", i, j) } |