#!/bin/bash # Copyright (C) 2006-2024 CEA, EDF # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # # --- script to execute in SALOME environment (use runSession) # --- wait until SALOME containers are ready python3 @CMAKE_CURRENT_SOURCE_DIR@/waitContainers.py # --- launch CORBA server echoSrv for tests ./echoSrv & pidecho=$! echo $pidecho > "/tmp/YACSTEST_PidEcho" # Environment variables needed for the optimizer loop tests export LD_LIBRARY_PATH=@CMAKE_CURRENT_BINARY_DIR@:$LD_LIBRARY_PATH export PYTHONPATH=@CMAKE_BINARY_DIR@/src/engine_swig:$PYTHONPATH export PYTHONPATH=@CMAKE_BINARY_DIR@/src/runtime_swig:$PYTHONPATH export PYTHONPATH=@CMAKE_CURRENT_SOURCE_DIR@:$PYTHONPATH # --- launch unit tests export ROOT_SAMPLES=@CMAKE_SOURCE_DIR@/src/yacsloader/samples export TESTCOMPONENT_ROOT_DIR=@CMAKE_BINARY_DIR@/src/runtime/Test ./TestYACSPMML ret=$? echo "exec status TestYACSPMML " $ret # --- return unit tests status exit $ret