summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf
diff options
context:
space:
mode:
authorWenji Huang <wenji.huang@oracle.com>2009-04-27 04:34:42 -0400
committerWenji Huang <wenji.huang@oracle.com>2009-04-26 23:04:52 -0400
commit40fc3e43cea224623400ac07b6f03c700d209dec (patch)
treea515fed92b082c8f1140c31deb006ef1254fabbc /testsuite/systemtap.printf
parent9f38e65363878d1e1bc8f51a0ad2cc4fd0316e13 (diff)
downloadsystemtap-steved-40fc3e43cea224623400ac07b6f03c700d209dec.tar.gz
systemtap-steved-40fc3e43cea224623400ac07b6f03c700d209dec.tar.xz
systemtap-steved-40fc3e43cea224623400ac07b6f03c700d209dec.zip
Add function of returning the char in given position of string
* tapset/string.stp: New function stringat. * testsuite/systemtap.printf/char1.exp: Update test case. * testsuite/systemtap.printf/char1.stp: Ditto.
Diffstat (limited to 'testsuite/systemtap.printf')
-rw-r--r--testsuite/systemtap.printf/char1.exp2
-rw-r--r--testsuite/systemtap.printf/char1.stp1
2 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/systemtap.printf/char1.exp b/testsuite/systemtap.printf/char1.exp
index 35aa479f..f9343c0e 100644
--- a/testsuite/systemtap.printf/char1.exp
+++ b/testsuite/systemtap.printf/char1.exp
@@ -1,3 +1,3 @@
set test "char1"
-set ::result_string {stap}
+set ::result_string {stapok}
stap_run2 $srcdir/$subdir/$test.stp
diff --git a/testsuite/systemtap.printf/char1.stp b/testsuite/systemtap.printf/char1.stp
index 207d1bc5..564c416b 100644
--- a/testsuite/systemtap.printf/char1.stp
+++ b/testsuite/systemtap.printf/char1.stp
@@ -3,6 +3,7 @@ probe begin
printf("%c", 115)
printf("%c", 116)
printf("%c%c", 97, 112)
+ printf("%c%c", stringat("ok", 0), stringat("ok", 1))
print("\n")
exit()
}