summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authormmason <mmason>2007-01-21 02:13:09 +0000
committermmason <mmason>2007-01-21 02:13:09 +0000
commitcc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372 (patch)
tree3b0c622a4d587f2b72f03b3b895a3173c20ee172 /testsuite
parentc4ae8cfe0247e025df7184390db3dec36dcf9263 (diff)
downloadsystemtap-steved-cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372.tar.gz
systemtap-steved-cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372.tar.xz
systemtap-steved-cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372.zip
Updated kmodule.stp test to look for other modules when ext3 isn't a module.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/ChangeLog7
-rw-r--r--testsuite/systemtap.base/kmodule.stp4
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;
}