public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
From: Zhou Wenjian <zhouwj-fnst@cn.fujitsu.com>
To: <systemtap@sourceware.org>
Subject: [PATCH v2] Add new case for stress test
Date: Mon, 04 Jan 2016 06:38:00 -0000	[thread overview]
Message-ID: <1451889421-9209-1-git-send-email-zhouwj-fnst@cn.fujitsu.com> (raw)

	* testsuite/lib/gen_load.exp: New test file
	* testsuite/systemtap.stress/all_kernel_functions.exp: Use gen_load.exp
	* testsuite/systemtap.stress/current.exp: Use gen_load.exp
	* testsuite/systemtap.stress/parallel_exec.exp: New test case
---
 testsuite/lib/gen_load.exp                         | 19 ++++++++++
 .../systemtap.stress/all_kernel_functions.exp      | 16 +--------
 testsuite/systemtap.stress/current.exp             | 19 ++--------
 testsuite/systemtap.stress/parallel_exec.exp       | 42 ++++++++++++++++++++++
 4 files changed, 64 insertions(+), 32 deletions(-)
 create mode 100644 testsuite/lib/gen_load.exp
 create mode 100644 testsuite/systemtap.stress/parallel_exec.exp

diff --git a/testsuite/lib/gen_load.exp b/testsuite/lib/gen_load.exp
new file mode 100644
index 0000000..43b9df1
--- /dev/null
+++ b/testsuite/lib/gen_load.exp
@@ -0,0 +1,19 @@
+# genload is used by stress test
+proc gen_load {} {
+    # if 'genload' from the ltp exists, use it to create a real load
+    catch {exec which genload 2>/dev/null} genload
+    if {![file executable $genload]} {
+        set genload {/usr/local/ltp/testcases/bin/genload}
+    }
+    if [file executable $genload] {
+        exec $genload -c 10 -i 10 -m 10 -t 10
+        #                               ^^^^^ run for 10 seconds
+        #                         ^^^^^ 10 procs spinning on malloc
+        #                   ^^^^^ 10 procs spinning on sync
+        #             ^^^^^ 10 procs spinning on sqrt
+    } else {
+        # sleep for a bit
+        wait_n_secs 10
+    }
+    return 0
+}
diff --git a/testsuite/systemtap.stress/all_kernel_functions.exp b/testsuite/systemtap.stress/all_kernel_functions.exp
index d7c2fbc..d546cfc 100644
--- a/testsuite/systemtap.stress/all_kernel_functions.exp
+++ b/testsuite/systemtap.stress/all_kernel_functions.exp
@@ -1,18 +1,4 @@
-proc genload {} {
-    # if 'genload' from the ltp exists, use it to create a real load
-    set genload {/usr/local/ltp/testcases/bin/genload}
-    if [file executable $genload] {
-        exec $genload -c 10 -i 10 -m 10 -t 10
-        #                               ^^^^^ run for 10 seconds
-        #                         ^^^^^ 10 procs spinning on malloc
-        #                   ^^^^^ 10 procs spinning on sync
-        #             ^^^^^ 10 procs spinning on sqrt
-    } else {
-        # sleep for a bit
-        wait_n_secs 10
-    }
-    return 0
-}
+load_lib "gen_load.exp"
 
 proc probe_ok {probepoint} {
     set cmd {exec stap -p2 -e}
diff --git a/testsuite/systemtap.stress/current.exp b/testsuite/systemtap.stress/current.exp
index 186baa3..83814b6 100644
--- a/testsuite/systemtap.stress/current.exp
+++ b/testsuite/systemtap.stress/current.exp
@@ -2,23 +2,8 @@
 # function, install it, and get some output.
 
 set test "current"
-
-proc current_load {} {
-    # if 'genload' from the ltp exists, use it to create a real load
-    set genload {/usr/local/ltp/testcases/bin/genload}
-    if [file executable $genload] {
-        exec $genload -c 10 -i 10 -m 10 -t 10
-        #                               ^^^^^ run for 10 seconds
-        #                         ^^^^^ 10 procs spinning on malloc
-        #                   ^^^^^ 10 procs spinning on sync
-        #             ^^^^^ 10 procs spinning on sqrt
-    } else {
-        # sleep for a bit
-        wait_n_secs 10
-    }
-    return 0
-}
+load_lib "gen_load.exp"
 
 set output_string "(\\w+ = \\d+\r\n){5}(${all_pass_string}){2}(WARNING.*skipped.*)?"
 
-stap_run $srcdir/$subdir/$test.stp current_load $output_string -g -w
+stap_run $srcdir/$subdir/$test.stp gen_load $output_string -g -w
diff --git a/testsuite/systemtap.stress/parallel_exec.exp b/testsuite/systemtap.stress/parallel_exec.exp
new file mode 100644
index 0000000..9b6769e
--- /dev/null
+++ b/testsuite/systemtap.stress/parallel_exec.exp
@@ -0,0 +1,42 @@
+#!/bin/expect -f
+
+set test "parallel execute"
+
+load_lib "gen_load.exp"
+
+set process_num 10
+
+set script {
+	probe syscall.open
+	{
+		if (pid() != target()) next
+		log("open")
+	}
+
+	probe syscall.close
+	{
+		if (pid() != target()) next
+		log("close")
+	}
+}
+
+for { set i 0 } { $i < $process_num } { incr i } {
+	exec stap -e "$script" -c "cat /etc/hosts > /dev/null" >>/tmp/parallel_exec &
+}
+
+if {[eval gen_load] == 0} then {
+	pass "$test load generation"
+} else {
+	fail "$test load generation"
+}
+
+set num1 [exec stap -e "$script" -c "cat /etc/hosts > /dev/null" | grep \[open|close\] | wc -l]
+set num2 [exec grep \[open|close\] /tmp/parallel_exec | wc -l]
+
+exec rm -f /tmp/parallel_exec
+
+if {$num1 * $process_num != $num2} {
+	fail $test
+} else {
+	pass $test
+}
-- 
1.8.3.1



             reply	other threads:[~2016-01-04  6:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-04  6:38 Zhou Wenjian [this message]
2016-01-11 21:58 ` David Smith
2016-01-12  1:43   ` "Zhou, Wenjian/周文剑"
2016-01-12 15:20     ` David Smith

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1451889421-9209-1-git-send-email-zhouwj-fnst@cn.fujitsu.com \
    --to=zhouwj-fnst@cn.fujitsu.com \
    --cc=systemtap@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).