summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Thruput/TAO/new_client_test
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Thruput/TAO/new_client_test')
-rwxr-xr-xTAO/performance-tests/Thruput/TAO/new_client_test71
1 files changed, 71 insertions, 0 deletions
diff --git a/TAO/performance-tests/Thruput/TAO/new_client_test b/TAO/performance-tests/Thruput/TAO/new_client_test
new file mode 100755
index 00000000000..2e87ccf2df3
--- /dev/null
+++ b/TAO/performance-tests/Thruput/TAO/new_client_test
@@ -0,0 +1,71 @@
+eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
+ & eval 'exec perl -S $0 $argv:q'
+ if 0;
+
+# $Id$
+#
+#new_client_test <filename to store results in> [FILEPERMISSION (default is 755)] [OBJ_REF]
+#
+# The first three lines above let this script run without specifying the
+# full path to perl, as long as it is in the user's PATH.
+# Taken from perlrun man page.
+
+$TEST_NAME = shift (@ARGV);
+$TEST_RES_BASE_DIR = "./results/REMOTE/";
+$TEST_DIR = $TEST_RES_BASE_DIR . $TEST_NAME;
+$FILE_PERMISSIONS = shift (@ARGV);
+$OBJ_REF = shift (@ARGV);
+$FILE_TO_WRITE_EXT = $TEST_DIR . '/sun-iiop.atm1.64';
+
+#if the file permissions aren't specified, default to 755
+if ($FILE_PERMISSIONS == NULL){
+ $FILE_PERMISSIONS = 755;
+}
+
+if (! (-d $TEST_DIR)) {
+ chdir $TEST_RES_BASE_DIR;
+ mkdir ($TEST_NAME, 0755);
+ system ("chmod $FILE_PERMISSIONS $TEST_NAME");
+ chdir "../../";
+}
+
+# shorts
+system ("new_run_test 67108864 128 $FILE_TO_WRITE_EXT s $OBJ_REF");
+sleep 5;
+# longs
+system ("new_run_test 67108864 128 $FILE_TO_WRITE_EXT l $OBJ_REF");
+sleep 5;
+# octets
+system ("new_run_test 67108864 128 $FILE_TO_WRITE_EXT o $OBJ_REF");
+sleep 5;
+# doubles
+system ("new_run_test 67108864 128 $FILE_TO_WRITE_EXT d $OBJ_REF");
+sleep 5;
+# chars
+system ("new_run_test 67108864 128 $FILE_TO_WRITE_EXT c $OBJ_REF");
+sleep 5;
+# structures
+system ("new_run_test 67108864 128 $FILE_TO_WRITE_EXT S $OBJ_REF");
+sleep 5;
+#Composite Structs
+system ("new_run_test 67108864 128 $FILE_TO_WRITE_EXT C $OBJ_REF");
+sleep 5;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+