Salome HOME
b3e55de8289c0c13fed3f91dab897b8399e0d52f
[modules/yacs.git] / src / runtime / Test / standaloneTest.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 killall -9 omniNames echoSrv
21
22 BASEREP=`pwd`
23 OMNIORB_CONFIG=${BASEREP}/omniorb.cfg
24 OMNINAMES_LOGDIR=${BASEREP}/omnilog
25
26 export BASEREP
27 export OMNIORB_CONFIG
28 export OMNINAMES_LOGDIR
29
30 echo ${BASEREP}
31 echo ${OMNIORB_CONFIG}
32
33 # do not use the default port 2810 for omninames (to improve, cf. SALOME)
34 echo "InitRef = NameService=corbaname::localhost:2910" > ${OMNIORB_CONFIG}
35
36 rm -rf ${OMNINAMES_LOGDIR}
37 mkdir  ${OMNINAMES_LOGDIR}
38
39 mkdir -p /tmp/${USER}
40 \rm -f /tmp/${USER}/UnitTestsResult
41
42 echo $$
43
44 omniNames -start 2910 &
45 pidomni=$!
46 echo $pidomni
47
48 ./echoSrv &
49 pidecho=$!
50 echo $pidecho
51
52 export PYTHONPATH=${BASEREP}:${PYTHONPATH}
53 ./.libs/TestStandAlone
54 ret=$?
55
56 # kill -9 $pidecho $pidomni
57 cat /tmp/${USER}/UnitTestsResult
58 exit $ret