]> SALOME platform Git repositories - modules/yacs.git/blob - src/yacsloader/Test/runYacsLoaderTest.sh
Salome HOME
ea7b37718773a113d0acdb4ddfa0536dc5588ea1
[modules/yacs.git] / src / yacsloader / Test / runYacsLoaderTest.sh
1 #!/bin/bash
2 # Copyright (C) 2006-2024  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
23 BASEDIR=`pwd`
24 TESTDIR=$(mktemp -d --suffix=.yacstest)
25 export TESTCOMPONENT_ROOT_DIR=${TESTDIR}
26
27 mkdir -p ${TESTDIR}/lib/salome
28 LIBTEST=$BASEDIR/../runtime/lib/salome/libTestComponentLocal.so
29 cp $LIBTEST ${TESTDIR}/lib/salome
30 LIBDIR=$BASEDIR/../lib
31
32 cp xmlrun.sh $TESTDIR
33 cp *.py $TESTDIR
34 ln -s $BASEDIR/samples $TESTDIR/samples
35 cp $BASEDIR/echoSrv $TESTDIR
36 cd $TESTDIR
37 LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$LIBDIR $BASEDIR/TestYacsLoader
38 ret=$?
39 cd $BASEDIR
40 echo "exec status TestYacsLoader " $ret
41
42 exit $ret