summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base
diff options
context:
space:
mode:
authorhunt <hunt>2007-11-12 22:04:35 +0000
committerhunt <hunt>2007-11-12 22:04:35 +0000
commitdda823f922ac7294cd24eeb4b1bb7436af24c8c7 (patch)
treebf8a4507dda929f48b1ad31e216b5694e1e99384 /testsuite/systemtap.base
parenteddde980ee23baef42edb992da5cb977ba6b4c0c (diff)
downloadsystemtap-steved-dda823f922ac7294cd24eeb4b1bb7436af24c8c7.tar.gz
systemtap-steved-dda823f922ac7294cd24eeb4b1bb7436af24c8c7.tar.xz
systemtap-steved-dda823f922ac7294cd24eeb4b1bb7436af24c8c7.zip
2007-11-12 Martin Hunt <hunt@redhat.com>
* systemtap.base/*.stp: Replace log() calls with println() (or printf() if formatting would help.) * systemtap.maps/*.stp: Ditto. * systemtap.samples/*.stp: Ditto. * systemtap.stress/*.stp: Ditto.
Diffstat (limited to 'testsuite/systemtap.base')
-rw-r--r--testsuite/systemtap.base/add.stp10
-rw-r--r--testsuite/systemtap.base/array_size.stp6
-rw-r--r--testsuite/systemtap.base/be_order.stp8
-rw-r--r--testsuite/systemtap.base/deref.stp6
-rw-r--r--testsuite/systemtap.base/deref2.stp4
-rw-r--r--testsuite/systemtap.base/equal.stp14
-rw-r--r--testsuite/systemtap.base/finloop2.stp12
-rw-r--r--testsuite/systemtap.base/global_init.stp8
-rw-r--r--testsuite/systemtap.base/if.stp12
-rw-r--r--testsuite/systemtap.base/inc.stp24
-rw-r--r--testsuite/systemtap.base/kfunct.stp6
-rw-r--r--testsuite/systemtap.base/kmodule.stp6
-rw-r--r--testsuite/systemtap.base/logical_and.stp22
-rw-r--r--testsuite/systemtap.base/not.stp12
-rw-r--r--testsuite/systemtap.base/print.stp39
-rw-r--r--testsuite/systemtap.base/prologues.stp2
-rw-r--r--testsuite/systemtap.base/simple.stp4
-rw-r--r--testsuite/systemtap.base/tri.stp16
18 files changed, 108 insertions, 103 deletions
diff --git a/testsuite/systemtap.base/add.stp b/testsuite/systemtap.base/add.stp
index 3fa7be38..8ae46f10 100644
--- a/testsuite/systemtap.base/add.stp
+++ b/testsuite/systemtap.base/add.stp
@@ -1,7 +1,7 @@
/*
* add.stp
*
- * Check the systemtap "addition" works
+ * Check that systemtap "addition" works
*/
global x3
@@ -10,17 +10,17 @@ global x2
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
x1 = 42; x2 = 53;
}
probe end
{
- log("systemtap ending probe")
+ println("systemtap ending probe")
x3 = x1 + x2;
if (x3 != 95 ) {
- log("systemtap test failure");
+ println("systemtap test failure")
} else {
- log("systemtap test success");
+ println("systemtap test success")
}
}
diff --git a/testsuite/systemtap.base/array_size.stp b/testsuite/systemtap.base/array_size.stp
index cf597a61..7b457247 100644
--- a/testsuite/systemtap.base/array_size.stp
+++ b/testsuite/systemtap.base/array_size.stp
@@ -6,8 +6,8 @@
* Call with MAXMAPENTRIES << 100
*/
-probe begin { log("systemtap starting probe") }
-probe end { log("systemtap ending probe") }
+probe begin { println("systemtap starting probe") }
+probe end { println("systemtap ending probe") }
global a[100]
@@ -24,7 +24,7 @@ probe end(1) {
++bad
}
if (ok == 100 && bad == 0)
- log("systemtap test success")
+ println("systemtap test success")
else
printf("systemtap test failure - ok:%d, bad:%d\n", ok, bad)
}
diff --git a/testsuite/systemtap.base/be_order.stp b/testsuite/systemtap.base/be_order.stp
index 166d0dca..57effb1f 100644
--- a/testsuite/systemtap.base/be_order.stp
+++ b/testsuite/systemtap.base/be_order.stp
@@ -4,8 +4,8 @@
* Check that ordering of begin/end probes works
*/
-probe begin { log("systemtap starting probe") }
-probe end { log("systemtap ending probe") }
+probe begin { println("systemtap starting probe") }
+probe end { println("systemtap ending probe") }
global beginstr, endstr
@@ -24,12 +24,12 @@ probe end(9223372036854775807) {
endstr .= "z"
if (beginstr == "abccde")
- log("systemtap test success")
+ println("systemtap test success")
else
printf("systemtap test failure - beginstr:%s != abccde\n", beginstr)
if (endstr == "vwxxyz")
- log("systemtap test success")
+ println("systemtap test success")
else
printf("systemtap test failure - endstr:%s != vwxxyz\n", endstr)
}
diff --git a/testsuite/systemtap.base/deref.stp b/testsuite/systemtap.base/deref.stp
index b003d657..3f76bfb6 100644
--- a/testsuite/systemtap.base/deref.stp
+++ b/testsuite/systemtap.base/deref.stp
@@ -4,8 +4,8 @@
* Check that the deref mechanisms work correctly.
*/
-probe begin { log("systemtap starting probe") }
-probe end { log("systemtap ending probe") }
+probe begin { println("systemtap starting probe") }
+probe end { println("systemtap ending probe") }
probe end(1) {
log_test("kread u8", kread_u8())
@@ -29,7 +29,7 @@ probe end(1) {
function log_test(test:string, result:long) {
if (result)
- log("systemtap test success")
+ println("systemtap test success")
else
printf("systemtap test failure - %s\n", test)
}
diff --git a/testsuite/systemtap.base/deref2.stp b/testsuite/systemtap.base/deref2.stp
index aa59490c..0008bae7 100644
--- a/testsuite/systemtap.base/deref2.stp
+++ b/testsuite/systemtap.base/deref2.stp
@@ -3,7 +3,7 @@
# It's just an ordinary function that returns a 4-byte signed value,
# even on a 64-bit hosts.
probe kernel.function("sock_alloc_fd").return {
- log ($return < 0 ? "neg" : "pos")
+ println ($return < 0 ? "neg" : "pos")
}
probe timer.s (5) { exit () }
-probe begin { log ("start") } \ No newline at end of file
+probe begin { println ("start") }
diff --git a/testsuite/systemtap.base/equal.stp b/testsuite/systemtap.base/equal.stp
index 83ca0115..0333307a 100644
--- a/testsuite/systemtap.base/equal.stp
+++ b/testsuite/systemtap.base/equal.stp
@@ -7,22 +7,22 @@
global count
global count2
-probe begin { log("systemtap starting probe") }
+probe begin { println("systemtap starting probe") }
probe kernel.function("schedule") { ++count; ++count2; }
probe end
{
- log("systemtap ending probe")
- log("count = " . sprint(count));
- log("count2 = " . sprint(count));
+ println("systemtap ending probe")
+ printf("count = %d\n", count)
+ printf("count2 = %d\n", count)
if ( count == count2) {
if ( (count-1) == count2 ) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
} else {
- log("systemtap test failure");
+ println("systemtap test failure");
}
}
diff --git a/testsuite/systemtap.base/finloop2.stp b/testsuite/systemtap.base/finloop2.stp
index 8f12fd8a..b675be41 100644
--- a/testsuite/systemtap.base/finloop2.stp
+++ b/testsuite/systemtap.base/finloop2.stp
@@ -10,7 +10,7 @@ global loop_count
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
}
probe kernel.function("schedule")
@@ -23,12 +23,12 @@ probe kernel.function("schedule")
probe end
{
- log("systemtap ending probe")
- log("count = " . sprint(count));
- log("loop_count = " . sprint(loop_count));
+ println("systemtap ending probe")
+ printf("count = %d\n", count)
+ printf("loop_count = %d\n", loop_count)
if ( count * 10 == loop_count) {
- log("systemtap test success");
+ println("systemtap test success");
} else {
- log("systemtap test failure");
+ println("systemtap test failure");
}
}
diff --git a/testsuite/systemtap.base/global_init.stp b/testsuite/systemtap.base/global_init.stp
index a5d7e58e..30478846 100644
--- a/testsuite/systemtap.base/global_init.stp
+++ b/testsuite/systemtap.base/global_init.stp
@@ -4,8 +4,8 @@
* Check that global variables are initialized before all begin probes
*/
-probe begin { log("systemtap starting probe") }
-probe end { log("systemtap ending probe") }
+probe begin { println("systemtap starting probe") }
+probe end { println("systemtap ending probe") }
global gnum = 42
global gstr = "foobar"
@@ -19,12 +19,12 @@ probe begin(-9223372036854775808) {
probe end {
if (gnum_saved == 42)
- log("systemtap test success")
+ println("systemtap test success")
else
printf("systemtap test failure - gnum_saved:%d != 42\n", gnum_saved)
if (gstr_saved == "foobar")
- log("systemtap test success")
+ println("systemtap test success")
else
printf("systemtap test failure - gstr_saved:%s != foobar\n", gstr_saved)
}
diff --git a/testsuite/systemtap.base/if.stp b/testsuite/systemtap.base/if.stp
index bcbafd51..fa4da54d 100644
--- a/testsuite/systemtap.base/if.stp
+++ b/testsuite/systemtap.base/if.stp
@@ -4,19 +4,19 @@
* Check the systemtap if statement works
*/
-probe begin { log("systemtap starting probe") }
+probe begin { println("systemtap starting probe") }
probe end
{
- log("systemtap ending probe")
+ println("systemtap ending probe")
if (1) {
- log("systemtap test success");
+ println("systemtap test success");
} else {
- log("systemtap test failure");
+ println("systemtap test failure");
}
if (0) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
}
diff --git a/testsuite/systemtap.base/inc.stp b/testsuite/systemtap.base/inc.stp
index f37b2cee..17d6dc7c 100644
--- a/testsuite/systemtap.base/inc.stp
+++ b/testsuite/systemtap.base/inc.stp
@@ -1,24 +1,28 @@
/*
* inc.stp
*
- * Check the systemtap ++ works
+ * Check that systemtap ++ works
*/
global x1
probe begin
{
- log("systemtap starting probe");
- x1 = 41;
+ println("systemtap starting probe")
+ x1 = 41
}
probe end
{
- log("systemtap ending probe");
- ++x1;
- if (x1 != 42 ) {
- log("systemtap test failure");
- } else {
- log("systemtap test success");
- }
+ println("systemtap ending probe")
+ x1++
+ if (x1 == 42) {
+ ++x1
+ if (x1 != 43 ) {
+ println("systemtap test failure")
+ } else {
+ println("systemtap test success")
+ }
+ } else
+ println("systemtap test failure")
}
diff --git a/testsuite/systemtap.base/kfunct.stp b/testsuite/systemtap.base/kfunct.stp
index 15be51bd..93031395 100644
--- a/testsuite/systemtap.base/kfunct.stp
+++ b/testsuite/systemtap.base/kfunct.stp
@@ -9,7 +9,7 @@ global count
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
}
probe kernel.function("schedule")
@@ -19,6 +19,6 @@ probe kernel.function("schedule")
probe end
{
- log("systemtap ending probe")
- log("count = " . sprint(count));
+ println("systemtap ending probe")
+ printf("count = %d\n", count)
}
diff --git a/testsuite/systemtap.base/kmodule.stp b/testsuite/systemtap.base/kmodule.stp
index 9c718f29..19241cab 100644
--- a/testsuite/systemtap.base/kmodule.stp
+++ b/testsuite/systemtap.base/kmodule.stp
@@ -9,7 +9,7 @@ global count
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
}
probe module("ext3").function("ext3_sync_file") ?,
@@ -22,6 +22,6 @@ probe module("ext3").function("ext3_sync_file") ?,
probe end
{
- log("systemtap ending probe")
- log("count = " . sprint(count));
+ println("systemtap ending probe")
+ println("count = " . sprint(count));
}
diff --git a/testsuite/systemtap.base/logical_and.stp b/testsuite/systemtap.base/logical_and.stp
index 5017190b..3f4961b4 100644
--- a/testsuite/systemtap.base/logical_and.stp
+++ b/testsuite/systemtap.base/logical_and.stp
@@ -1,7 +1,7 @@
/*
* logical_and.stp
*
- * Check the systemtap "logical and" works
+ * Check that systemtap "logical and" works
*/
global x1_0
@@ -11,31 +11,31 @@ global x4_1
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
x1_0 = 0; x2_1 = 1; x3_0 = 0; x4_1 = 1;
}
probe end
{
- log("systemtap ending probe")
+ println("systemtap ending probe")
if (x1_0 && x3_0 ) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
if (x2_1 && x3_0 ) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
if (x1_0 && x4_1 ) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
if (x2_1 && x4_1 ) {
- log("systemtap test success");
+ println("systemtap test success");
} else {
- log("systemtap test failure");
+ println("systemtap test failure");
}
}
diff --git a/testsuite/systemtap.base/not.stp b/testsuite/systemtap.base/not.stp
index 3e1bbd50..166346df 100644
--- a/testsuite/systemtap.base/not.stp
+++ b/testsuite/systemtap.base/not.stp
@@ -1,24 +1,24 @@
/*
* neg.stp
*
- * Check the systemtap negation works
+ * Check that systemtap negation works
*/
global x2, x1
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
x1 = 0xaaaaaaaaaaaaaaaa
}
probe end
{
- log("systemtap ending probe")
- x2 = ~x1;
+ println("systemtap ending probe")
+ x2 = ~x1
if ( x2 != 0x5555555555555555 ) {
- log("systemtap test failure");
+ println("systemtap test failure")
} else {
- log("systemtap test success");
+ println("systemtap test success")
}
}
diff --git a/testsuite/systemtap.base/print.stp b/testsuite/systemtap.base/print.stp
index e1b64c35..161be4b4 100644
--- a/testsuite/systemtap.base/print.stp
+++ b/testsuite/systemtap.base/print.stp
@@ -8,32 +8,33 @@ global s1, s2, s3
probe begin
{
- log("systemtap starting probe")
- s1 = "systemtap"
- s2 = "test"
- s3 = "success"
+ println("systemtap starting probe")
+ s1 = "systemtap"
+ s2 = "test"
+ s3 = "success"
}
probe end
{
- log("systemtap ending probe")
+ println("systemtap ending probe")
- print(s1, " ", s2, " ", s3, "\n")
- print(sprint(s1, " ", s2, " ", s3, "\n"))
+ print(s1, " ", s2, " ", s3, "\n")
+ print(sprint(s1, " ", s2, " ", s3, "\n"))
- println(s1, " ", s2, " ", s3)
- print(sprintln(s1, " ", s2, " ", s3))
+ println(s1, " ", s2, " ", s3)
+ print(sprintln(s1, " ", s2, " ", s3))
- printd(" ", s1, s2, s3 . "\n")
- print(sprintd(" ", s1, s2, s3 . "\n"))
+ printd(" ", s1, s2, s3 . "\n")
+ print(sprintd(" ", s1, s2, s3 . "\n"))
- printdln(" ", s1, s2, s3)
- print(sprintdln(" ", s1, s2, s3))
+ printdln(" ", s1, s2, s3)
+ print(sprintdln(" ", s1, s2, s3))
- // check that formatting characters get escaped correctly in the delimiter
- s = sprintd("%% % \\ \"", 1, 2, 3)
- if (s == "1%% % \\ \"2%% % \\ \"3")
- log("systemtap test success")
- else
- log("systemtap test failure")
+ // Check that formatting characters get escaped correctly
+ // in the delimiter.
+ s = sprintd("%% % \\ \"", 1, 2, 3)
+ if (s == "1%% % \\ \"2%% % \\ \"3")
+ println("systemtap test success")
+ else
+ println("systemtap test failure")
}
diff --git a/testsuite/systemtap.base/prologues.stp b/testsuite/systemtap.base/prologues.stp
index fc32ccd9..cbda14f9 100644
--- a/testsuite/systemtap.base/prologues.stp
+++ b/testsuite/systemtap.base/prologues.stp
@@ -1,6 +1,6 @@
# These sys_ functions often display prologue sensitivity
probe syscall.read, syscall.write {
- log (name . argstr)
+ printf("%s (%s)\n", name, argstr)
if (num++ > 20) exit()
}
global num
diff --git a/testsuite/systemtap.base/simple.stp b/testsuite/systemtap.base/simple.stp
index 28a81cff..ee8a97a8 100644
--- a/testsuite/systemtap.base/simple.stp
+++ b/testsuite/systemtap.base/simple.stp
@@ -7,10 +7,10 @@
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
}
probe end
{
- log("systemtap ending probe")
+ println("systemtap ending probe")
}
diff --git a/testsuite/systemtap.base/tri.stp b/testsuite/systemtap.base/tri.stp
index 80aed1e7..92b78801 100644
--- a/testsuite/systemtap.base/tri.stp
+++ b/testsuite/systemtap.base/tri.stp
@@ -8,29 +8,29 @@ global x1, x2, x3, x4, x5, x6
probe begin
{
- log("systemtap starting probe");
+ println("systemtap starting probe");
x1 = 0; x2 = 1; x3=30;
}
probe end
{
- log("systemtap ending probe")
+ println("systemtap ending probe")
x4 = x1 ? 9: 10;
x5 = x2 ? 99: 100;
x6 = x3 ? 999: 1000;
if (x4 != 10 ) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
if (x5 != 99 ) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
if (x6 != 999 ) {
- log("systemtap test failure");
+ println("systemtap test failure");
} else {
- log("systemtap test success");
+ println("systemtap test success");
}
}