diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-02-23 17:37:24 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-02-23 17:37:24 -0500 |
commit | b781aecce66c4c99bed488d40cabd1022ea3edc3 (patch) | |
tree | 22ed4d1beacc05b4bb6682ecbc82d3a70c5d7d98 /testsuite/systemtap.samples | |
parent | 53de687e0ca376db7ff55219833542982e477900 (diff) | |
parent | 8a0dc35ee2dc6164e30e0a4c664768066db047e0 (diff) | |
download | systemtap-steved-b781aecce66c4c99bed488d40cabd1022ea3edc3.tar.gz systemtap-steved-b781aecce66c4c99bed488d40cabd1022ea3edc3.tar.xz systemtap-steved-b781aecce66c4c99bed488d40cabd1022ea3edc3.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Conflicts:
testsuite/ChangeLog
Diffstat (limited to 'testsuite/systemtap.samples')
-rw-r--r-- | testsuite/systemtap.samples/args.exp | 12 |
1 files changed, 6 insertions, 6 deletions
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 } |