summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/utrace_p5.exp
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2008-04-22 13:31:37 -0500
committerDavid Smith <dsmith@redhat.com>2008-04-22 13:33:16 -0500
commit79f716ddbd288236b816b1a7d5bf57e28403f4fa (patch)
treedfb586a00b6e1e66167bf9c65edf735f8105cd2e /testsuite/systemtap.base/utrace_p5.exp
parentab70160be701d5b89157ea15754fd0ded830a970 (diff)
downloadsystemtap-steved-79f716ddbd288236b816b1a7d5bf57e28403f4fa.tar.gz
systemtap-steved-79f716ddbd288236b816b1a7d5bf57e28403f4fa.tar.xz
systemtap-steved-79f716ddbd288236b816b1a7d5bf57e28403f4fa.zip
Simplified systemtap.base/utrace_p5.exp a little.
2008-04-22 David Smith <dsmith@redhat.com> * systemtap.base/utrace_p5.exp: Simplfied a little.
Diffstat (limited to 'testsuite/systemtap.base/utrace_p5.exp')
-rw-r--r--testsuite/systemtap.base/utrace_p5.exp5
1 files changed, 0 insertions, 5 deletions
diff --git a/testsuite/systemtap.base/utrace_p5.exp b/testsuite/systemtap.base/utrace_p5.exp
index a17d0145..cbb867d1 100644
--- a/testsuite/systemtap.base/utrace_p5.exp
+++ b/testsuite/systemtap.base/utrace_p5.exp
@@ -8,7 +8,6 @@ set death_script {
global death_probes_fired = 0
probe begin { printf("systemtap starting probe\n") }
probe process("%s").death { death_probes_fired++ }
- probe timer.ms(10000) { exit() }
probe end { printf("systemtap ending probe\n")
printf("deaths = %%d\n", death_probes_fired) }
}
@@ -18,7 +17,6 @@ set exec_script {
global exec_probes_fired = 0
probe begin { printf("systemtap starting probe\n") }
probe process("%s").exec { exec_probes_fired++ }
- probe timer.ms(10000) { exit() }
probe end { printf("systemtap ending probe\n")
printf("execs = %%d\n", exec_probes_fired) }
}
@@ -28,7 +26,6 @@ set syscall_script {
global syscall_probes_fired = 0
probe begin { printf("systemtap starting probe\n") }
probe process("%s").syscall { syscall_probes_fired++ }
- probe timer.ms(10000) { exit() }
probe end { printf("systemtap ending probe\n")
if (syscall_probes_fired > 0) {
printf("syscalls = %%d\n", syscall_probes_fired)
@@ -41,7 +38,6 @@ set syscall_return_script {
global syscall_return_probes_fired = 0
probe begin { printf("systemtap starting probe\n") }
probe process("%s").syscall.return { syscall_return_probes_fired++ }
- probe timer.ms(10000) { exit() }
probe end { printf("systemtap ending probe\n")
if (syscall_return_probes_fired > 0) {
printf("syscall_returns = %%d\n", syscall_return_probes_fired)
@@ -54,7 +50,6 @@ set clone_script {
global clone_probes_fired = 0
probe begin { printf("systemtap starting probe\n") }
probe process(%d).clone { clone_probes_fired++ }
- probe timer.ms(10000) { exit() }
probe end { printf("systemtap ending probe\n")
if (clone_probes_fired > 0) {
printf("clones = %%d\n", clone_probes_fired)