diff options
Diffstat (limited to 'testsuite/buildok')
-rwxr-xr-x | testsuite/buildok/one.stp | 2 | ||||
-rwxr-xr-x | testsuite/buildok/two.stp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/buildok/one.stp b/testsuite/buildok/one.stp index 491d059e..76cdcca8 100755 --- a/testsuite/buildok/one.stp +++ b/testsuite/buildok/one.stp @@ -19,7 +19,7 @@ probe begin baz[10] = "" q = baz[223] - printk("hello from systemtap") + print("hello from systemtap\n") } diff --git a/testsuite/buildok/two.stp b/testsuite/buildok/two.stp index 7453cae1..e10a036d 100755 --- a/testsuite/buildok/two.stp +++ b/testsuite/buildok/two.stp @@ -12,7 +12,7 @@ strncpy(THIS->__retvalue, UTS_RELEASE, MAXSTRINGLEN); probe begin { - printk("hello from systemtap, kernel version " . get_release()) + log("hello from systemtap, kernel version " . get_release()) } END |