From 42b935893cd4ebc67aa1f9384844bf1108f97c37 Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 21 Aug 2007 12:45:14 +0000 Subject: 2007-08-21 Frank Ch. Eigler PR 4942 * systemtap.base/kmodule.stp: Add "never" probe for type inference. --- testsuite/systemtap.base/kmodule.stp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testsuite/systemtap.base') diff --git a/testsuite/systemtap.base/kmodule.stp b/testsuite/systemtap.base/kmodule.stp index e8e9ee26..9c718f29 100644 --- a/testsuite/systemtap.base/kmodule.stp +++ b/testsuite/systemtap.base/kmodule.stp @@ -14,7 +14,8 @@ probe begin probe module("ext3").function("ext3_sync_file") ?, module("sd_mod").function("sd_rw_intr") ? , - module("ide").function("ide_intr") ? + module("ide").function("ide_intr") ?, + never /* in case the above probes all miss */ { ++count; } -- cgit