From 6eec708abee9188d74602f2602925edd2daa6342 Mon Sep 17 00:00:00 2001 From: Varun Chandramohan Date: Sat, 20 Jun 2009 09:40:36 +0530 Subject: Testcase For str_replace() This patch adds the test case needed for this function. I have added few tests. If required more can be added in future. As discussed in previous version, the testcase patch has been reverted to the original as the str_replace() functionality has changed wrt to error handle. Signed-off-by: Varun Chandramohan Signed-off-by: Josh Stone --- testsuite/systemtap.string/str_replace.stp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testsuite/systemtap.string/str_replace.stp (limited to 'testsuite/systemtap.string/str_replace.stp') diff --git a/testsuite/systemtap.string/str_replace.stp b/testsuite/systemtap.string/str_replace.stp new file mode 100644 index 00000000..87e09353 --- /dev/null +++ b/testsuite/systemtap.string/str_replace.stp @@ -0,0 +1,25 @@ +# Test of str_replace() + +global long_str1 = "hello system tap" +global long_str2 = "Here I am, on the road again. there I am, up on the stage, Here I go, playing star again. There I go, turn the page.- Bob Seger" +global long_src_str1 = "system" +global long_src_str2 = "hello" +global long_src_str3 = "tap" +global long_rlpc_str = "pointer" + +probe begin { + printf("Result = %s\n",str_replace(long_str1, long_src_str1, long_rlpc_str)) + printf("Result = %s\n",str_replace(long_str1, long_src_str2, long_rlpc_str)) + printf("Result = %s\n",str_replace(long_str1, long_src_str3, long_rlpc_str)) + + printf("Result = %s\n",str_replace(long_str2, "road", "bored")) + printf("Result = %s\n",str_replace(long_str2, "Here", "here")) + printf("Result = %s\n",str_replace(long_str2, "Bob Seger", "Metallica")) + printf("Result = %s\n",str_replace(long_str1, long_src_str1, "\0")) + printf("Result = %s\n",str_replace(long_str1, "\0", long_rlpc_str)) + printf("Result = %s\n",str_replace("\0", "\0", long_rlpc_str)) + printf("Result = %s\n",str_replace("\0", "\0", "\0")) +} +probe begin { + exit() +} -- cgit