From 715a5878413aecc2e50be94f8171f7cca3955b00 Mon Sep 17 00:00:00 2001 From: fche Date: Sat, 23 Feb 2008 22:08:00 +0000 Subject: 2008-02-23 Frank Ch. Eigler * systemtap.samples/args.exp: Remove installation-specific paths from pass/fail judgements. --- testsuite/ChangeLog | 5 +++++ 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,3 +1,8 @@ +2008-02-23 Frank Ch. Eigler + + * systemtap.samples/args.exp: Remove installation-specific paths from + pass/fail judgements. + 2008-02-23 Frank Ch. Eigler * */*.exp: Change all "send \003" to "exec kill -INT -" in order 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 } -- cgit