summaryrefslogtreecommitdiffstats
path: root/runtime/tests/string/string1.c
diff options
context:
space:
mode:
authorStan Cox <scox@redhat.com>2008-05-29 14:46:38 -0400
committerStan Cox <scox@redhat.com>2008-05-29 14:46:38 -0400
commitc39d889155d4c9365bd27691d22a92c447ced976 (patch)
tree64b56069b0435ac09564ba983bea154a9747bcbe /runtime/tests/string/string1.c
parentef63732e82dd7979dcf608ba6ed4528e150b47ac (diff)
downloadsystemtap-steved-c39d889155d4c9365bd27691d22a92c447ced976.tar.gz
systemtap-steved-c39d889155d4c9365bd27691d22a92c447ced976.tar.xz
systemtap-steved-c39d889155d4c9365bd27691d22a92c447ced976.zip
SW5106 Remove old map and histogram formatting code
Diffstat (limited to 'runtime/tests/string/string1.c')
-rw-r--r--runtime/tests/string/string1.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/runtime/tests/string/string1.c b/runtime/tests/string/string1.c
deleted file mode 100644
index 48773e5f..00000000
--- a/runtime/tests/string/string1.c
+++ /dev/null
@@ -1,44 +0,0 @@
-/* test of Strings */
-
-/* use very small buffer size for testing */
-#define STP_PRINT_BUF_LEN 20
-#define STP_NUM_STRINGS 4
-#include "runtime.h"
-
-int main ()
-{
- String str[4];
- int i;
-
- for (i = 0; i < 4; i++)
- str[i] = _stp_string_init (i);
-
- _stp_sprintf(str[0], "Hello world");
- _stp_sprintf(str[1], "Red Hat");
- _stp_sprintf(str[2], "Intel");
- _stp_sprintf(str[3], "IBM");
-
- for (i = 0; i < 4; i++)
- _stp_print(str[i]);
- _stp_print_cstr("\n");
-
- for (i = 0; i < 4; i++) {
- _stp_print(str[i]);
- _stp_print(" / ");
- }
- _stp_print_cstr("\n");
-
- _stp_string_cat_cstr (str[1], " Inc.");
- _stp_print(str[1]);
- _stp_print("\n");
-
- _stp_string_cat_cstr (str[0], " ");
- _stp_string_cat_string (str[0], str[1]);
- _stp_print(str[0]);
- _stp_print("\n");
-
- _stp_sprintf(str[2], "%s\n", _stp_string_ptr(str[3]));
- _stp_print(str[2]);
- _stp_print_flush();
- return 0;
-}