summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/run_test
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Param_Test/run_test')
-rwxr-xr-xTAO/tests/Param_Test/run_test24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/tests/Param_Test/run_test b/TAO/tests/Param_Test/run_test
deleted file mode 100755
index 70864337b49..00000000000
--- a/TAO/tests/Param_Test/run_test
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-PORT=20001
-IORFILE=theior
-INVOCATION=sii
-start_server()
-{
- ./server -ORBobjrefstyle url -ORBport $PORT -o $IORFILE 2>&1 | sed -e 's/^/SERVER: /' &
-}
-
-# Restart the server if we get SIGCHLD, i.e., the server died.
-trap "start_server" 17
-trap "rm -f $IORFILE" 0
-start_server
-trap "kill `ps | grep server | awk '{print $1;}'`" 0
-
-TYPES="short ubstring fixed_struct strseq var_struct nested_struct struct_seq objref"
-for type in $TYPES
-do
- echo "BEGIN Testing type $type"
- sleep 2 # Give the server a chance to start up
- ./client -f $IORFILE -i $INVOCATION -t $type 2>&1 | sed -e "s/^/CLIENT($type): /"
- echo "END Testing type $type"
-done