summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base
diff options
context:
space:
mode:
authorStan Cox <scox@redhat.com>2008-12-21 22:48:38 -0500
committerStan Cox <scox@redhat.com>2008-12-21 22:48:38 -0500
commita688cff28de458448f40584acfa5f22d7e444471 (patch)
tree803c493e0849ace6a347ceb9feeaefc5a88a0ee2 /testsuite/systemtap.base
parent5fab0487aa45893289ad9a688a513eb7925f5133 (diff)
downloadsystemtap-steved-a688cff28de458448f40584acfa5f22d7e444471.tar.gz
systemtap-steved-a688cff28de458448f40584acfa5f22d7e444471.tar.xz
systemtap-steved-a688cff28de458448f40584acfa5f22d7e444471.zip
Put a block around the probe point.
Diffstat (limited to 'testsuite/systemtap.base')
-rw-r--r--testsuite/systemtap.base/static_uprobes.exp8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/systemtap.base/static_uprobes.exp b/testsuite/systemtap.base/static_uprobes.exp
index f3f26d8a..354256db 100644
--- a/testsuite/systemtap.base/static_uprobes.exp
+++ b/testsuite/systemtap.base/static_uprobes.exp
@@ -112,7 +112,7 @@ set fp [open "[pwd]/static_uprobes.stp" "w"]
puts $fp "
probe process(\"static_uprobes.x\").mark(\"label0\")
{
- printf(\"In label0 probe %#x\\n\", \$label0_arg1)
+ printf(\"In label0 probe %#x\\n\", \$arg1)
}
probe process(\"static_uprobes.x\").mark(\"label1\")
{
@@ -120,15 +120,15 @@ probe process(\"static_uprobes.x\").mark(\"label1\")
}
probe process(\"static_uprobes.x\").mark(\"label2\")
{
- printf(\"In label2 probe %#x\\n\", \$label2_arg1)
+ printf(\"In label2 probe %#x\\n\", \$arg1)
}
probe process(\"static_uprobes.x\").mark(\"label3\")
{
- printf(\"In label3 probe %#x %#x\\n\", \$label3_arg1, \$label3_arg2)
+ printf(\"In label3 probe %#x %#x\\n\", \$arg1, \$arg2)
}
probe process(\"static_uprobes.x\").mark(\"label4\")
{
- printf(\"In label4 dtrace probe %#x\\n\", \$label4_arg1)
+ printf(\"In label4 dtrace probe %#x\\n\", \$arg1)
}
"
close $fp