summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/fourteen.stp
diff options
context:
space:
mode:
authorfche <fche>2005-11-21 19:02:44 +0000
committerfche <fche>2005-11-21 19:02:44 +0000
commit422d1ceb1e08c1174154cf19bb03f788e1e10fb8 (patch)
treef5ccae593d0416aed77441770103659fbdf878b3 /testsuite/buildok/fourteen.stp
parentb1f3e72e9fb1f41b0dbb5be20506e375fcf89561 (diff)
downloadsystemtap-steved-422d1ceb1e08c1174154cf19bb03f788e1e10fb8.tar.gz
systemtap-steved-422d1ceb1e08c1174154cf19bb03f788e1e10fb8.tar.xz
systemtap-steved-422d1ceb1e08c1174154cf19bb03f788e1e10fb8.zip
2005-11-21 Frank Ch. Eigler <fche@elastic.org>
PR 1276 From Josh Stone <joshua.i.stone@intel.com>: * tapsets.cxx (timer_derived_probe, timer_builder, register_standard_tapsets): Support timer.ms() variety. * stapprobes.5.in: Document it. * testsuite/builok/fourteen.stp: Test its buildability.
Diffstat (limited to 'testsuite/buildok/fourteen.stp')
-rwxr-xr-xtestsuite/buildok/fourteen.stp2
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/buildok/fourteen.stp b/testsuite/buildok/fourteen.stp
index dd231696..4490052f 100755
--- a/testsuite/buildok/fourteen.stp
+++ b/testsuite/buildok/fourteen.stp
@@ -3,4 +3,6 @@
global i, j
probe timer.jiffies(100) { i++ }
probe timer.jiffies(100).randomize(100) { j++ }
+probe timer.ms(100) { i++ }
+probe timer.ms(100).randomize(100) { j++ }
probe end { log ("i=" . string(i) . " j=" . string(j)) }