diff options
-rw-r--r-- | testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | testsuite/systemtap.samples/args.exp | 12 |
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 } |