diff options
author | Mark Wielaard <mjw@redhat.com> | 2009-08-24 17:09:29 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-08-24 17:13:17 +0200 |
commit | 345bbb3d0f827566083cb124c6f3641639ad98d4 (patch) | |
tree | 71883cf1024a731c8a960b2e38970ff446c3a493 /testsuite/systemtap.base/vars.exp | |
parent | 1392896dcda33324d43392f8e99fed240cf5fb9b (diff) | |
download | systemtap-steved-345bbb3d0f827566083cb124c6f3641639ad98d4.tar.gz systemtap-steved-345bbb3d0f827566083cb124c6f3641639ad98d4.tar.xz systemtap-steved-345bbb3d0f827566083cb124c6f3641639ad98d4.zip |
Fix failing uprobes.exp -p5 failures by removing trailing spaces in $$ vars.
* tapsets.cxx (dwarf_var_expanding_visitor::visit_target_symbol_context):
Don't add extra space at end of list, only add space between symbols.
* testsuite/systemtap.base/uprobes.exp: Use more specific expect regex.
* testsuite/systemtap.base/vars.exp: Don't just chop off last char of printf
output string.
Diffstat (limited to 'testsuite/systemtap.base/vars.exp')
-rw-r--r-- | testsuite/systemtap.base/vars.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.base/vars.exp b/testsuite/systemtap.base/vars.exp index 195abee0..75afe9ef 100644 --- a/testsuite/systemtap.base/vars.exp +++ b/testsuite/systemtap.base/vars.exp @@ -3,7 +3,7 @@ set test "vars" # grab C statement that $$vars yields -set cmd [concat stap -p3 -e {"probe kernel.statement(\"bio_copy_user@fs/bio.c+1\") \{print (\$\$vars)\}"} | grep {"printf.*="} | sed -e {"s/^.*MAXSTRINGLEN, \"//"} -e {s/.\".*$//}] +set cmd [concat stap -p3 -e {"probe kernel.statement(\"bio_copy_user@fs/bio.c+1\") \{print (\$\$vars)\}"} | grep {"printf.*="} | sed -e {"s/^.*MAXSTRINGLEN, \"//"} -e {s/\".*$//}] catch {eval exec $cmd} vars # grab C statement that $$parms yields |