summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuite/ChangeLog2
-rw-r--r--testsuite/systemtap.base/utrace_p5.exp5
2 files changed, 2 insertions, 5 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index 698714f8..878a8c39 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -1,5 +1,7 @@
2008-04-22 David Smith <dsmith@redhat.com>
+ * systemtap.base/utrace_p5.exp: Simplfied a little.
+
* systemtap.base/utrace_p5.exp: Added run-time utrace tests.
2008-04-21 David Smith <dsmith@redhat.com>
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)