summaryrefslogtreecommitdiff
path: root/trunk/ACE/performance-tests/Server_Concurrency/run_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ACE/performance-tests/Server_Concurrency/run_test.sh')
-rwxr-xr-xtrunk/ACE/performance-tests/Server_Concurrency/run_test.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/trunk/ACE/performance-tests/Server_Concurrency/run_test.sh b/trunk/ACE/performance-tests/Server_Concurrency/run_test.sh
new file mode 100755
index 00000000000..0f45ca8f11a
--- /dev/null
+++ b/trunk/ACE/performance-tests/Server_Concurrency/run_test.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+#
+# $Id$
+#
+
+for s in 0 25 50 75 100; do
+ for w in 1 2 3 4 5 6; do
+ echo ================ WORK: $s 1>&2
+ echo ================ THREADS: $w 1>&2
+ ./Queue_Based_Workers/workers -m 100000 -b 100000 -s $s -w $w
+ ./Leader_Follower/leader_follower -m 100000 -b 100000 -s $s -w $w
+ done
+done