summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.examples/general
diff options
context:
space:
mode:
authorEugene Teo <eteo@redhat.com>2009-04-03 23:46:43 +0800
committerEugene Teo <eteo@redhat.com>2009-04-03 23:46:43 +0800
commit8e6c3aa3d61109b0276e96cdbc9ffdde60a5ac0a (patch)
tree4e2b40ebf341e27089535b3388512d96d62033c5 /testsuite/systemtap.examples/general
parent8c1b9e271c944f64fc11fa9679c653b84ceaa77c (diff)
downloadsystemtap-steved-8e6c3aa3d61109b0276e96cdbc9ffdde60a5ac0a.tar.gz
systemtap-steved-8e6c3aa3d61109b0276e96cdbc9ffdde60a5ac0a.tar.xz
systemtap-steved-8e6c3aa3d61109b0276e96cdbc9ffdde60a5ac0a.zip
New ANSI escape sequences tapset
This adds a new tapset for ANSI escape sequences. It is based on an existing tapset that was written by Masami Hiramatsu for the stapgames project. This also adds a version of ansi_color.stp script that displays other attributes other than the bold effect.
Diffstat (limited to 'testsuite/systemtap.examples/general')
-rw-r--r--testsuite/systemtap.examples/general/ansi_colors2.stp31
1 files changed, 31 insertions, 0 deletions
diff --git a/testsuite/systemtap.examples/general/ansi_colors2.stp b/testsuite/systemtap.examples/general/ansi_colors2.stp
new file mode 100644
index 00000000..5f1b102e
--- /dev/null
+++ b/testsuite/systemtap.examples/general/ansi_colors2.stp
@@ -0,0 +1,31 @@
+#!/usr/bin/env stap
+# ansi_colors2.stp
+# Copyright (C) 2009 Red Hat, Inc., Eugene Teo <eteo@redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+
+probe begin {
+ printf("a \\ b |");
+ for (c = 40; c < 48; c++)
+ printf(" %d ", c);
+ ansi_new_line()
+ for (l = 0; l < 71; l++)
+ printf("-");
+ ansi_new_line()
+
+ for (r = 30; r < 38; r++)
+ # this displays more attributes
+ for (t = 0; t < 8; !t ? ++t : t+=3) {
+ printf("%d |", r);
+ for (c = 40; c < 48; c++) {
+ ansi_set_color3(r, c, t)
+ printf(" Colors ")
+ ansi_reset_color()
+ }
+ ansi_new_line()
+ }
+ exit();
+}