2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
8 #------------------------------------------------------------------------------
10 # This file is part of OpenFOAM.
12 # OpenFOAM 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 2 of the License, or (at your
15 # option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 #------------------------------------------------------------------------------
33 # Source tutorial run functions
34 .
$WM_PROJECT_DIR/bin
/tools
/RunFunctions
37 # Extracts useful info from log file.
39 case=`dirname $1 | sed s/"\(.*\)\.\/"/""/g`
40 app
=`echo $1 | sed s/"\(.*\)\."/""/g`
41 appAndCase
="Application $app - case $case"
43 fatalError
=`grep "FOAM FATAL" $1`
44 UxSS
=`grep -E "Ux[:| ]*solution singularity" $1`
45 UySS
=`grep -E "Uy[:| ]*solution singularity" $1`
46 UzSS
=`grep -E "Uz[:| ]*solution singularity" $1`
47 completed
=`grep -E "^[\t ]*[eE]nd" $1`
49 if [ "$fatalError" ] ; then
50 echo "$appAndCase: ** FOAM FATAL ERROR **"
52 elif [ "$UxSS" -a "$UySS" -a "$UzSS" ] ; then
53 echo "$appAndCase: ** Solution singularity **"
55 elif [ "$completed" ] ; then
56 completionTime
=`tail -10 $log | grep Execution | cut -d= -f2 | sed 's/^[ \t]*//'`
57 if [ "$completionTime" ] ; then
58 completionTime
="in $completionTime"
60 echo "$appAndCase: completed $completionTime"
63 echo "$appAndCase: unconfirmed completion"
68 # Recursively run all tutorials
69 foamRunTutorials cases
72 # Analyse all log files
73 rm testLoopReport
> /dev
/null
2>&1 &
77 if [ -d $application ]
80 for log
in `find . -name "log.*" | xargs ls -rt`
82 logReport
$log >> ..
/testLoopReport
84 echo "" >> ..
/testLoopReport
89 find .
-name "log.*" -exec cat {} \
; >> logs
92 # ----------------------------------------------------------------- end-of-file