diff options
-rw-r--r-- | testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | testsuite/systemtap.base/kmodule.stp | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index 92e9a0ab..ad054909 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2007-01-20 Mike Mason <mmlnx@us.ibm.com> + + PR 3899 + * systemtap.base/kmodule.stp: Added probes for other + modules that allow the test to pass when ext3 isn't + built as a module. + 2007-01-19 Josh Stone <joshua.i.stone@intel.com> PR 3079 diff --git a/testsuite/systemtap.base/kmodule.stp b/testsuite/systemtap.base/kmodule.stp index e8f0287f..e8e9ee26 100644 --- a/testsuite/systemtap.base/kmodule.stp +++ b/testsuite/systemtap.base/kmodule.stp @@ -12,7 +12,9 @@ probe begin log("systemtap starting probe") } -probe module("ext3").function("ext3_sync_file") +probe module("ext3").function("ext3_sync_file") ?, + module("sd_mod").function("sd_rw_intr") ? , + module("ide").function("ide_intr") ? { ++count; } |