summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2008-02-23 22:08:00 +0000
committerfche <fche>2008-02-23 22:08:00 +0000
commit715a5878413aecc2e50be94f8171f7cca3955b00 (patch)
tree5e3576186c0cef30e8e9243014eef14ed49cc704
parent4e14d2355434bef975d1e2a1ea05c1a159fcecde (diff)
downloadsystemtap-steved-715a5878413aecc2e50be94f8171f7cca3955b00.tar.gz
systemtap-steved-715a5878413aecc2e50be94f8171f7cca3955b00.tar.xz
systemtap-steved-715a5878413aecc2e50be94f8171f7cca3955b00.zip
2008-02-23 Frank Ch. Eigler <fche@elastic.org>
* systemtap.samples/args.exp: Remove installation-specific paths from pass/fail judgements.
-rw-r--r--testsuite/ChangeLog5
-rw-r--r--testsuite/systemtap.samples/args.exp12
2 files changed, 11 insertions, 6 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index c3ee8d1e..41e34c57 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -1,5 +1,10 @@
2008-02-23 Frank Ch. Eigler <fche@elastic.org>
+ * systemtap.samples/args.exp: Remove installation-specific paths from
+ pass/fail judgements.
+
+2008-02-23 Frank Ch. Eigler <fche@elastic.org>
+
* */*.exp: Change all "send \003" to "exec kill -INT -<pgrp>" in order
to more reliably kill an inferior stap/stapio/staprun process group.
diff --git a/testsuite/systemtap.samples/args.exp b/testsuite/systemtap.samples/args.exp
index f6d5cec6..54647998 100644
--- a/testsuite/systemtap.samples/args.exp
+++ b/testsuite/systemtap.samples/args.exp
@@ -5,7 +5,7 @@ set stappath [exec which stap]
set staprunpath [exec which staprun]
if [file exists $staprunpath] {
- pass "$test search for staprun ($staprunpath)"
+ pass "$test search for staprun"
} else {
fail "$test search for staprun"
return
@@ -25,15 +25,15 @@ catch {close}; wait
set modpath_cwd "$modname.ko"
if [file exists $modpath_cwd] {
- pass "$test search for probe module ($modpath_cwd)"
+ pass "$test search for probe module"
} else {
- fail "$test search for probe module ($modpath_cwd)"
+ fail "$test search for probe module"
return
}
exec /bin/rm -f $modpath_cwd
if [file exists $tmpdir] {
- pass "$test search for tmpdir ($tmpdir)"
+ pass "$test search for tmpdir"
} else {
fail "$test search for tmpdir"
return
@@ -41,9 +41,9 @@ if [file exists $tmpdir] {
set modpath "$tmpdir/$modname.ko"
if [file exists $modpath] {
- pass "$test search for probe module ($modpath)"
+ pass "$test search for tmpdir probe module"
} else {
- fail "$test search for probe module ($modpath)"
+ fail "$test search for tmpdir probe module"
return
}