diff options
Diffstat (limited to 'testsuite/buildok')
-rwxr-xr-x | testsuite/buildok/four.stp | 8 | ||||
-rwxr-xr-x | testsuite/buildok/twentyfive.stp | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/testsuite/buildok/four.stp b/testsuite/buildok/four.stp index 8ceff188..7ecbc5c8 100755 --- a/testsuite/buildok/four.stp +++ b/testsuite/buildok/four.stp @@ -1,6 +1,12 @@ #! stap -p4 -probe module("ext3").function("*") +probe module("ext3").function("*") ? { log ("ext3 fn") } + +/*to avoid empty file*/ +probe begin +{ + +} diff --git a/testsuite/buildok/twentyfive.stp b/testsuite/buildok/twentyfive.stp index 1bd39b02..3326ba40 100755 --- a/testsuite/buildok/twentyfive.stp +++ b/testsuite/buildok/twentyfive.stp @@ -2,7 +2,7 @@ # PR 3522. -probe module("ext3").function("ext3_check_dir_entry") { +probe module("ext3").function("ext3_check_dir_entry")? { print ($ext3_filetype_table[1]) # static global in CU } probe timer.s(4) { exit () } |