diff options
Diffstat (limited to 'testsuite/buildok/twentyfive.stp')
-rwxr-xr-x | testsuite/buildok/twentyfive.stp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/buildok/twentyfive.stp b/testsuite/buildok/twentyfive.stp new file mode 100755 index 00000000..1bd39b02 --- /dev/null +++ b/testsuite/buildok/twentyfive.stp @@ -0,0 +1,9 @@ +#! stap -p4 + +# PR 3522. + +probe module("ext3").function("ext3_check_dir_entry") { + print ($ext3_filetype_table[1]) # static global in CU +} +probe timer.s(4) { exit () } + |