Salome HOME
[EDF30382] : Synchro mecanism to ease test of extreme situations
[modules/kernel.git] / src / Launcher / Test / test_stress.sh
1 #! /bin/bash
2 # Copyright (C) 2018-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 # This test launches in parallel a great number of instances of a usual use case
22 WORKDIR=`mktemp -d`
23 echo WORKDIR: $WORKDIR
24 cat > $WORKDIR/command.sh <<< 'echo "OK" > result.txt'
25 chmod 755 $WORKDIR/command.sh
26 pid_launcher=''
27 for i in {1..20}
28 do
29   ./launcher_use_case.py $WORKDIR 2> $WORKDIR/log$i.err &
30   pid_launcher=$pid_launcher" "$!
31 done
32 exit_code=0
33 for i in "$pid_launcher"
34 do
35   wait $i
36   ret=$?
37   if [ $ret -ne "0" ]
38   then
39      echo "Error detected!"
40      exit_code=1
41   fi
42 done
43 # list of error files not empty
44 ls -l $WORKDIR/*.err | awk '{if ($5 != "0") print $0}'
45 exit $exit_code