Salome HOME
4962e7235c5c9c17433d1020926c6d4271320964
[modules/yacs.git] / src / runtime / Test / runtimeTest.sh
1 #!/bin/sh
2 #  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 BASEREP=`pwd`
21 OMNIORB_CONFIG=${BASEREP}/omniorb.cfg
22 OMNINAMES_LOGDIR=${BASEREP}/omnilog
23
24 export BASEREP
25 export OMNIORB_CONFIG
26 export OMNINAMES_LOGDIR
27
28 echo ${BASEREP}
29 echo ${OMNIORB_CONFIG}
30
31 # do not use the default port 2810 for omninames (to improve, cf. SALOME)
32 echo "InitRef = NameService=corbaname::localhost:2910" > ${OMNIORB_CONFIG}
33
34 rm -rf ${OMNINAMES_LOGDIR}
35 mkdir  ${OMNINAMES_LOGDIR}
36
37 echo $$
38
39 omniNames -start 2910 &
40 pidomni=$!
41 echo $pidomni
42
43 #wait enough time to let omniNames start
44 sleep 2
45
46 ./echoSrv &
47 pidecho=$!
48 echo $pidecho
49
50 mkdir -p lib/salome
51 cp .libs/libTestComponentLocal.so lib/salome
52 export TESTCOMPONENT_ROOT_DIR=`pwd`
53
54 #wait enough time to let echoSrv start and register
55 sleep 2
56
57 ./TestRuntime
58 ret=$?
59
60 kill -9 $pidecho $pidomni
61 cat /tmp/${USER}/UnitTestsResult
62 exit $ret