summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-29 14:35:49 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-29 14:35:49 +0000
commitce0270ade5fc73e6ec1967b6ad11b8268bc7d355 (patch)
tree94ffe11ea2d61646f56a0a95ca7304a357796e7a /TAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test
parent80b4cd115bdc4445bc11dbe281f077e91b449008 (diff)
downloadATCD-ce0270ade5fc73e6ec1967b6ad11b8268bc7d355.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test')
-rwxr-xr-xTAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test9
1 files changed, 9 insertions, 0 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test b/TAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test
index c014e488854..ab51c1c4083 100755
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/MT_Cubit_Test
@@ -48,6 +48,15 @@ threads=`expr $1 + 1`
########
+######## Make sure that the executables have been built.
+########
+if [ ! -f ./server -o ! -f ./client ]; then
+ echo $0: 'server and/or client need to be built!'
+ exit -1
+fi
+
+
+########
######## Enable signal handler.
########
trap 'kill -15 $server_pid; /bin/rm -f $ior_file; exit 0' 0 1 2 15