diff options
Diffstat (limited to 'testsuite/systemtap.base')
-rw-r--r-- | testsuite/systemtap.base/static_uprobes.exp | 8 |
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 |