summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/IDL_Cubit/benchmark_sequence.sh
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Cubit/TAO/IDL_Cubit/benchmark_sequence.sh')
-rwxr-xr-xTAO/performance-tests/Cubit/TAO/IDL_Cubit/benchmark_sequence.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/benchmark_sequence.sh b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/benchmark_sequence.sh
deleted file mode 100755
index a170f4158b0..00000000000
--- a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/benchmark_sequence.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-# $Id$
-
-# Script to run the IDL_Cubit octet sequence test with different
-# sequence sizes, using TAO's UIOP pluggable protocol.
-# The -ORBGIOPlite option will be used.
-# Client and Server output will be placed in separate files.
-
-# Initially written by Ossama Othman <othman@cs.wustl.edu>
-
-set -e
-
-for bytes in 4 8 16 32 64 128 256 512 1024 2048; do
- echo "Running IDL_Cubit sequence<octet> test with $bytes byte(s) in sequence..."
- ./server -f ior -ORBEndpoint uiop:// -ORBGIOPlite \
- > octet_seq.$bytes.uioplite.server 2>&1 &
- sleep 2
- ./client -f ior -n 1000 -t small_octet_seq -b $bytes -x -ORBGIOPlite \
- > octet_seq.$bytes.uioplite.client 2>&1
- wait
-done
-
-echo "Done."
-