Salome HOME
dcc3b46ea6ad7b3187cdbbfc568299c0c3796abb
[modules/yacs.git] / src / yacsloader / Test / runYacsLoaderTest.sh
1 #!/bin/bash
2 # Copyright (C) 2006-2023  CEA, EDF
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, or (at your option) any later version.
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
21 # script used by "salome test" command
22 ./echoSrv &
23 pidecho=$!
24
25 BASEDIR=`pwd`
26 TESTDIR=$(mktemp -d --suffix=.yacstest)
27 export TESTCOMPONENT_ROOT_DIR=${TESTDIR}
28
29 mkdir -p ${TESTDIR}/lib/salome
30 LIBTEST=$BASEDIR/../runtime/lib/salome/libTestComponentLocal.so
31 cp $LIBTEST ${TESTDIR}/lib/salome
32 LIBDIR=$BASEDIR/../lib
33
34 cp xmlrun.sh $TESTDIR
35 cp *.py $TESTDIR
36 ln -s $BASEDIR/samples $TESTDIR/samples
37 cd $TESTDIR
38 LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$LIBDIR $BASEDIR/TestYacsLoader
39 ret=$?
40 cd $BASEDIR
41 echo "exec status TestYacsLoader " $ret
42
43 kill -9 $pidecho
44
45 exit $ret