diff options
Diffstat (limited to 'testsuite/transok')
-rwxr-xr-x | testsuite/transok/eight.stp | 4 | ||||
-rwxr-xr-x | testsuite/transok/seven.stp | 2 | ||||
-rwxr-xr-x | testsuite/transok/six.stp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/transok/eight.stp b/testsuite/transok/eight.stp index e703a5ae..6723b993 100755 --- a/testsuite/transok/eight.stp +++ b/testsuite/transok/eight.stp @@ -21,10 +21,10 @@ probe begin foreach ([x,y,z] in baz) { - printk(baz[x,y,z] . y) + log(baz[x,y,z] . y) } - printk("hello from systemtap") + log("hello from systemtap") } diff --git a/testsuite/transok/seven.stp b/testsuite/transok/seven.stp index 0c0e00d7..7471e9e8 100755 --- a/testsuite/transok/seven.stp +++ b/testsuite/transok/seven.stp @@ -13,7 +13,7 @@ probe begin ++foo["hello"] x = foo["hello"] foo["yo"] *= bar[x, foo["hello"], "goodbye"]++; - printk("hello from systemtap") + log("hello from systemtap") } diff --git a/testsuite/transok/six.stp b/testsuite/transok/six.stp index 8684107e..0b3bdccf 100755 --- a/testsuite/transok/six.stp +++ b/testsuite/transok/six.stp @@ -2,7 +2,7 @@ probe begin { - printk("kernel time") + print("kernel time\n") log("hello there") warn("this is a builtin") } |