Salome HOME
updated copyright message
[modules/yacs.git] / src / yacsloader / Test / YacsLoaderTest.sh.in
index 6279e5a3c9bb934c9df373c8c1b011c22b9c87b6..a9a650194d2f5d30feeec0055d34072d91f7aeb9 100755 (executable)
@@ -1,4 +1,31 @@
 #!/bin/bash
+# Copyright (C) 2006-2023  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
+#
+
+if test -f @CMAKE_CURRENT_BINARY_DIR@/config_appli.xml; then
+  if test -n "${GEOM_ROOT_DIR}" && test -d ${GEOM_ROOT_DIR}; then
+    sed -i s%\"GEOM_ROOT_DIR\"%\"${GEOM_ROOT_DIR}\"% @CMAKE_CURRENT_BINARY_DIR@/config_appli.xml
+  fi
+  if test -n "${PYHELLO_ROOT_DIR}" && test -d ${PYHELLO_ROOT_DIR}; then
+    sed -i s%\"PYHELLO_ROOT_DIR\"%\"${PYHELLO_ROOT_DIR}\"% @CMAKE_CURRENT_BINARY_DIR@/config_appli.xml
+  fi
+fi
 
 if test -f @KERNEL_ROOT_DIR@/bin/salome/appli_gen.py ; then
 
@@ -21,8 +48,8 @@ EOF
 
   # --- launch in background a SALOME session (servers)
 
-  ln -fs @top_srcdir@/src/yacsloader/samples .
-  ./runAppli > log1 2>&1
+  ln -fs @CMAKE_SOURCE_DIR@/src/yacsloader/samples .
+  ./salome > log1 2>&1 &
 
   # --- wait a little to let the background process define
   #     the CORBA naming service port and host
@@ -31,35 +58,26 @@ EOF
 
   # --- execute the test script in SALOME session environment
 
-  chmod +x @builddir@/YacsLoaderInSessionTest.sh
-  ./runSession @builddir@/YacsLoaderInSessionTest.sh
-  ret1=$?
-
-  # ---------------------------------------------------------------------------
-  # --- second set of tests: Python scripts
-
-  chmod +x @builddir@/YacsLoaderInSessionTest2.sh
-  ./runSession @builddir@/YacsLoaderInSessionTest2.sh
-  ret2=$?
+  chmod +x @CMAKE_CURRENT_BINARY_DIR@/YacsLoaderInSessionTest.sh
+  ./salome shell @CMAKE_CURRENT_BINARY_DIR@/YacsLoaderInSessionTest.sh
+  ret=$?
 
   # ---------------------------------------------------------------------------
 
   kill -9 `cat "/tmp/YACSTEST_PidEcho"`
-  ./runSession killSalome.py
+  ./salome shell python3 killSalome.py
 
-  echo "exec status YacsLoaderInSessionTest.sh "  $ret1
-  echo "exec status YacsLoaderInSessionTest2.sh " $ret2
-  let ret=$ret1+$ret2
+  echo "exec status YacsLoaderInSessionTest.sh "  $ret
 
   # --- delete all the SALOME Application environment
   
-  ./bin/salome/appli_clean.sh
+  ./bin/salome/appli_clean.sh -f
 
 else
 
-  ln -fs @top_srcdir@/src/yacsloader/samples .
-  chmod +x @builddir@/YacsLoaderInSessionTest.sh
-  @builddir@/YacsLoaderInSessionTest.sh
+  ln -fs @CMAKE_SOURCE_DIR@/src/yacsloader/samples .
+  chmod +x @CMAKE_CURRENT_BINARY_DIR@/YacsLoaderInSessionTest.sh
+  @CMAKE_CURRENT_BINARY_DIR@/YacsLoaderInSessionTest.sh
   ret=$?
   echo "exec status YacsLoaderInSessionTest.sh " $ret