From cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372 Mon Sep 17 00:00:00 2001 From: mmason Date: Sun, 21 Jan 2007 02:13:09 +0000 Subject: Updated kmodule.stp test to look for other modules when ext3 isn't a module. --- testsuite/systemtap.base/kmodule.stp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'testsuite/systemtap.base') 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; } -- cgit