2 #------------------------------------------------------------------------------
4 # \\ / F ield | foam-extend: Open Source CFD
6 # \\ / A nd | For copyright notice see file Copyright
8 #------------------------------------------------------------------------------
10 # This file is part of foam-extend.
12 # foam-extend is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation, either version 3 of the License, or (at your
15 # option) any later version.
17 # foam-extend is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 # General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
30 #------------------------------------------------------------------------------
32 # Source tutorial run functions
33 .
$WM_PROJECT_DIR/bin
/tools
/RunFunctions
36 # Extracts useful info from log file.
38 case=`dirname $1 | sed s/"\(.*\)\.\/"/""/g`
39 app
=`echo $1 | sed s/"\(.*\)\."/""/g`
40 appAndCase
="Application $app - case $case"
42 fatalError
=`grep "FOAM FATAL" $1`
43 UxSS
=`grep -E "Ux[:| ]*solution singularity" $1`
44 UySS
=`grep -E "Uy[:| ]*solution singularity" $1`
45 UzSS
=`grep -E "Uz[:| ]*solution singularity" $1`
46 completed
=`grep -E "^[\t ]*[eE]nd" $1`
48 if [ "$fatalError" ] ; then
49 echo "$appAndCase: ** FOAM FATAL ERROR **"
51 elif [ "$UxSS" -a "$UySS" -a "$UzSS" ] ; then
52 echo "$appAndCase: ** Solution singularity **"
54 elif [ "$completed" ] ; then
55 completionTime
=`tail -10 $log | grep Execution | cut -d= -f2 | sed 's/^[ \t]*//'`
56 if [ "$completionTime" ] ; then
57 completionTime
="in $completionTime"
59 echo "$appAndCase: completed $completionTime"
62 echo "$appAndCase: unconfirmed completion"
67 # Recursively run all tutorials
68 foamRunTutorials cases
71 # Analyse all log files
72 rm testLoopReport
> /dev
/null
2>&1 &
76 if [ -d $application ]
79 for log
in `find . -name "log.*" | xargs ls -rt`
81 logReport
$log >> ..
/testLoopReport
83 echo "" >> ..
/testLoopReport
88 find .
-name "log.*" -exec cat {} \
; >> logs
91 # ----------------------------------------------------------------- end-of-file