diff options
Diffstat (limited to 'testsuite/semok/thirtythree.stp')
-rwxr-xr-x | testsuite/semok/thirtythree.stp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/semok/thirtythree.stp b/testsuite/semok/thirtythree.stp index 3c23ab1c..d5171f66 100755 --- a/testsuite/semok/thirtythree.stp +++ b/testsuite/semok/thirtythree.stp @@ -1,4 +1,5 @@ -#!/bin/sh +#! stap -p2 # Per bz3016, this should get through the semantic pass without warnings. -stap -p2 -e 'probe kernel.function("do_mpage_readpage") { printf("\n page ->inuse %u",$page->inuse);exit();}' -exit 0 +probe kernel.function("do_mpage_readpage") { + printf("\n page ->inuse %u",$page->inuse) +} |