]> sourceware.org Git - systemtap.git/commitdiff
Add testcase for function definitions.
authorZhou Wenjian <zhouwj-fnst@cn.fujitsu.com>
Fri, 4 Dec 2015 13:41:55 +0000 (07:41 -0600)
committerDavid Smith <dsmith@redhat.com>
Fri, 4 Dec 2015 13:41:55 +0000 (07:41 -0600)
* testsuite/systemtap.base/func_definition.exp: New test case.
* testsuite/systemtap.base/func_definition.stp: New test file.

testsuite/systemtap.base/func_definition.exp [new file with mode: 0644]
testsuite/systemtap.base/func_definition.stp [new file with mode: 0644]

diff --git a/testsuite/systemtap.base/func_definition.exp b/testsuite/systemtap.base/func_definition.exp
new file mode 100644 (file)
index 0000000..65abdb5
--- /dev/null
@@ -0,0 +1,13 @@
+# Check function definitions
+
+set test "func_definition"
+if {![installtest_p]} { untested "$test"; return }
+
+foreach runtime [get_runtime_list] {
+    if {$runtime != ""} {
+       stap_run $srcdir/$subdir/$test.stp no_load (${all_pass_string}){5} \
+           --runtime=$runtime
+    } else {
+       stap_run $srcdir/$subdir/$test.stp no_load (${all_pass_string}){5}
+    }
+}
diff --git a/testsuite/systemtap.base/func_definition.stp b/testsuite/systemtap.base/func_definition.stp
new file mode 100644 (file)
index 0000000..eaa8d94
--- /dev/null
@@ -0,0 +1,60 @@
+/*
+ * func_definition.stp
+ *
+ * Check function definitions
+ */
+probe begin {
+    println("systemtap starting probe")
+}
+
+
+function f1(arg:long)
+{
+    if (arg == 2015)
+        println("systemtap test success")
+    else
+        printf("systemtap test failure - arg of f1:%d != 2015\n", arg)
+}
+
+function f2(arg)
+{
+    if (arg == 2015)
+        println("systemtap test success")
+    else
+        printf("systemtap test failure - arg of f2:%d != 2015\n", arg)
+}
+
+function f3:long()
+{
+    return 2015
+}
+
+function f4()
+{
+    return 2015
+}
+
+function f5()
+{
+    println("systemtap test success")
+}
+
+probe end {
+    println("systemtap ending probe")
+
+    f1(2015)
+
+    f2(2015)
+
+    if (f3() == 2015)
+        println("systemtap test success")
+    else
+        printf("systemtap test failure - return_value of f3:%d != 2015\n", f3())
+
+    if (f4() == 2015)
+        println("systemtap test success")
+    else
+        printf("systemtap test failure - return_value of f4:%d != 2015\n", f4())
+
+    f5()
+}
This page took 0.030137 seconds and 5 git commands to generate.